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

相干axis调用webservice无参数传入可是有返回参数的方式

2012-09-10 
有关axis调用webservice无参数传入可是有返回参数的方式public void getRscMsg(){try {final String endpo

有关axis调用webservice无参数传入可是有返回参数的方式

public void getRscMsg(){try {final String endpoint = "http://localhost:8080/CrmHttpServiceWeb/services/RscMsgService";final Service service =new Service(); final Call call = (Call) service.createCall(); call.setTargetEndpointAddress( new java.net.URL(endpoint) ); call.setOperationName("getRscMsg");String result = (String) call.invoke(new Object[]{}); System.out.println("return value is " + result);} catch (Exception e) {e.printStackTrace();}}

????

??? 关键是第9行,入参是一个空对象。

热点排行