首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

CXF客户端动态调用webservice有关问题

2013-12-15 
CXF客户端动态调用webservice问题public class WSClient {public static void main(String[] args)throws

CXF客户端动态调用webservice问题
public class WSClient {
public static void main(String[] args)throws Exception {
String wsdlUrl = "http://www.webxml.com.cn/webservices/chinatvprogramwebservice.asmx?wsdl";
JaxWsDynamicClientFactory factory = JaxWsDynamicClientFactory.newInstance();
 Client client = factory.createClient(wsdlUrl);

    Object[] res = client.invoke("getAreaString");
        System.out.println(res[0]);
}
}

上面是我测试代码,电视台提供了Web Services,本地不希望保存WSDL,上面代码运行报错,求指导。
[解决办法]
http://blog.csdn.net/chenghui0317/article/details/9320053
试试这个。。

热点排行