WebService調用客戶端代碼

axis方式


public void axisCall() {


String url="http://localhost:7701//GrpCustInfoSer?WSDL";
try {
String xml = GrpCustInfoSer.readFileByChars("src/集團客戶資料.xml");
Service serv = new Service();
Call call;
call = (Call) serv.createCall();
call.setTargetEndpointAddress(url);
call.setOperationName(new QName(url, "GrpCustInfoSer"));
call.addParameter("string",XMLType.XSD_STRING,ParameterMode.IN); 
String result1 = (String) call.invoke(new Object[] { xml });


System.out.println("result111111 is " + result1);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

web_service.xml


<web-service
targetNamespace="http://www.chinaunicom.com.cn/bj/GrpAcctInfoSer"
uri="/GrpAcctInfoSer" style="rpc" name="GrpAcctInfoSer"
protocol="http">
<components>
<java-class name="jcComp0"
class-name="com.blc.GrpAcctInfoSer">
</java-class>
</components>
<operations>
<operation method="GrpAcctInfoSer" component="jcComp0"></operation>
</operations>
</web-service>
targetNamespace="http://www.chinaunicom.com.cn/bj/GrpAcctInfoSer"
uri="/GrpAcctInfoSer" style="rpc" name="GrpAcctInfoSer"
protocol="http">
<components>
<java-class name="jcComp0"
class-name="com.blc.GrpAcctInfoSer">
</java-class>
</components>
<operations>
<operation method="GrpAcctInfoSer" component="jcComp0"></operation>
</operations>
</web-service>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章