xfire调用webservice返回的结果如何取到呀,现在调用 有问题吗?
xfire调用webservice返回的结果如何取到呀,现在调用 有问题吗?
try {
Client c = new Client(new URL("http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?wsdl"));
Object[] params = new Object[2];
params[0] = "1.202.90.134";
Object[] results = c.invoke("getCountryCityByIp",params);
Document d = (Document)results[0];
System.out.println(d.getNodeValue());
System.out.println(results[0]);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
已经搞定谢谢 那就结贴给分吧。