xfire 如下:
String spID = "";
String password= "";
String accessCode= "";
String content= "";
String mobileString= "";String url= "";
String operateName= "Submit";
Object[] object= newObject[]{spID,password,accessCode,content,mobileString};org.codehaus.xfire.client.Client client= new org.codehaus.xfire.client.Client(newURL(url));
String a=client.getUrl();
Object[] results =client.invoke(operateName, object);
System.out.println("aaaa:" + results[0]);
cxf
JaxWsDynamicClientFactory factory = JaxWsDynamicClientFactory.newInstance();
Client client = factory.createClient(url);
// 下面一段處理 WebService接口和實現類namespace不同的情況
// CXF動態客戶端在處理此問題時,會報No operation was found with the name的異常
Endpoint endpoint = client.getEndpoint();
QName opName = new QName(endpoint.getService().getName().getNamespaceURI(), operateName);
BindingInfo bindingInfo = endpoint.getEndpointInfo().getBinding();
if (bindingInfo.getOperation(opName) == null) {
for (BindingOperationInfo operationInfo : bindingInfo.getOperations()) {
if (operateName.equals(operationInfo.getName().getLocalPart())) {
opName = operationInfo.getName();
break;
}
}
}
Object[] res = client.invoke(opName, object);