我正在尝试使用soap weservice示例。 该代码使用GeoIp webservice从IP地址确定国家/地区。 当我执行代码时,我得到以下异常。
异常:
Exception in thread "main" com.sun.xml.internal.ws.fault.ServerSOAPFaultException: Client received SOAP Fault from server: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at WebserviceX.Service.Adapter.IPAdapter.CheckIP(String IP)
at WebserviceX.Service.GeoIPService.GetGeoIP(String IPAddress)
--- End of inner exception stack trace --- Please see the server log to find more detail regarding exact cause of the failure.
at com.sun.xml.internal.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:178)
at com.sun.xml.internal.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:116)
at com.sun.xml.internal.ws.client.sei.StubHandler.readResponse(StubHandler.java:238)
at com.sun.xml.internal.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:189)
at com.sun.xml.internal.ws.db.DatabindingImpl.deserializeResponse(DatabindingImpl.java:276)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:104)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:77)
at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:147)
at com.sun.proxy.$Proxy31.getGeoIP(Unknown Source)
at org.manjosh.demo.IPlocationFinder.main(IPlocationFinder.java:19)
我的代码:
import net.webservicex.GeoIP;
import net.webservicex.GeoIPService;
import net.webservicex.GeoIPServiceSoap;
public class IPlocationFinder {
public static void main(String[] args) {
if (args.length != 1){
System.out.println("you need to pass atleast 1 IP address");
}
else
{
String ipAddress = args[0];
GeoIPService ipService = new GeoIPService();
GeoIPServiceSoap geoIpserviceSoap = ipService.getGeoIPServiceSoap();
GeoIP geoIp = geoIpserviceSoap.getGeoIP(ipAddress);
System.out.println((String)geoIp.getCountryName());
}
}
}
答案 0 :(得分:1)
如果先在sopui中获得响应,请使用soapui create xml并发送请求。然后检查您发送的xml是否包含所有字段并在soapui请求中匹配一个。