http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl
此WSDL文件不需要修改,可直接在cmd中写入WSDL文件的网络路径进行翻译
wsdl2java http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl
另外再写一个测试类:
package cn.com.test;
import cn.com.webxml.MobileCodeWS;
import cn.com.webxml.MobileCodeWSSoap;
public class Test {
public static void main(String[] args) {
MobileCodeWS mc=new MobileCodeWS();
MobileCodeWSSoap mcss=mc.getMobileCodeWSSoap();
System.out.println(mcss.getMobileCodeInfo("13718413397", null));
}
}