1 从菜单选择Other

2 选择 【Web Services】 下面的 【Web Service Client】

3 在【Service definition】里面写上完整的路径
比如 [url]http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?WSDL[/url]
或者优快云的 OpenAPI
[url]http://forum.youkuaiyun.com/OpenApi/forumapi.asmx[/url]
比如 [url]http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?WSDL[/url]
或者优快云的 OpenAPI
[url]http://forum.youkuaiyun.com/OpenApi/forumapi.asmx[/url]

4 选择路径

5 完成的结果

测试(这部分是我个人写的,也可能有其他方法)
//使用代理调用方法
WeatherWSSoapProxy wssp=new WeatherWSSoapProxy();
String[] str=wssp.getSupportCityString("北京");
for (int i = 0; i < str.length; i++) {
System.out.println(str[i]);
}
String[] str=wssp.getSupportCityString("北京");
for (int i = 0; i < str.length; i++) {
System.out.println(str[i]);
}