com.sun.xml.internal.ws.fault.serversoapfaultException:客户端从服



我去了Servicex.com查看我的SOAP WebService技能,我会遇到此错误。有人可以帮助我吗?

谢谢这是我在这里消耗服务的主要课程。

import java.util.Scanner;
import net.webservicex.ArrayOfAddress;
import net.webservicex.USAddressVerification;
import net.webservicex.USAddressVerificationSoap;
import net.webservicex.VerifyAddressResponse; 

public class AddressValidation {

    public static void  main(String [] arg) {
        @SuppressWarnings("resource")
        Scanner in = new Scanner (System.in);
        System.out.println("enter the city ");
            String city = in.nextLine();
            System.out.println("enter the state ");
            String state = in.nextLine();
            System.out.println("enter the zip ");
            String zip = in.nextLine();
            // service end point interface 
            USAddressVerification addressVerification= new USAddressVerification ();
            USAddressVerificationSoap addressVerificationSoap = addressVerification.getUSAddressVerificationSoap();
            ArrayOfAddress USAddress = addressVerificationSoap.verifyAddress(city, state, zip);
            VerifyAddressResponse reponse = new VerifyAddressResponse();
    reponse.setVerifyAddressResult(USAddress);
            System.out.println("The Address is:" + reponse.getVerifyAddressResult());
        }

}

它对我有用。

使用内置生成eclipse的WebService客户端,并编写以下代码。

   USAddressVerificationSoap addressVerificationSoap= new USAddressVerificationSoapProxy ();
   Address[] USAddress = addressVerificationSoap.verifyAddress(city, state, zip);

最新更新