java调⽤webservice接⼝三种⽅法
摘⾃其它:webservice的 发布⼀般都是使⽤WSDL(web service descriptive language)⽂件的样式来发布的,在WSDL⽂件⾥⾯,包含这个webservice暴露在外⾯可供使⽤的接⼝。今天搜索到了⾮常好的 webservice provider列表
这上⾯列出了70多个包括很多⽅⾯的free webservice provider,utilities->global weather就可以获取全球的天⽓预报。
直接粘贴代码:
⽅法⼀:直接AXIS调⽤远程的web service
public void doSelectRiskReportForm(HttpServletRequest request,
HttpServletResponse response){
//调⽤接⼝
//⽅法⼀:直接AXIS调⽤远程的web service
try {
String endpoint = "localhost:8080/platform-jxcx-service/services/settlementServiceImpl?wsdl";
Service service = new Service();
Call call = (Call) ateCall();
call.setTargetEndpointAddress(endpoint);
String parametersName = "settle_num";  // 参数名//对应的是 public String printWord(@WebParam(name = "settle_num") String settle_num);
//            call.setOperationName("printWord");    // 调⽤的⽅法名//当这种调⽤不到的时候,可以使⽤下⾯的,加⼊命名空间名
call.setOperationName(new QName("jjxg_settlement.platform.bocins/", "printWord"));// 调⽤的⽅法名
call.addParameter(parametersName, XMLType.XSD_STRING, ParameterMode.IN);//参数名//XSD_STRING:String类型//.IN⼊参
call.setReturnType(XMLType.XSD_STRING);  // 返回值类型:String
String message = "123456789";
String result = (String) call.invoke(new Object[] { message });// 远程调⽤
System.out.println("result is " + result);
} catch (Exception e) {
}
}
⽅法⼆:直接SOAP调⽤远程的webservice
调用webservice服务这个⽅法我没有试验,需要下载jar,SOAP 使⽤ HTTP 传送 XML,尽管HTTP 不是有效率的通讯协议,⽽且 XML 还需要额外的⽂件解析(parse),两者使得交易的速度⼤⼤低于其它⽅案。但是XML 是⼀个开放、健全、有语义的讯息机制,⽽ HTTP 是⼀个⼴泛⼜能避免许多关于防⽕墙的问题,从⽽
使SOAP得到了⼴泛的应⽤。但是如果效率对你来说很重要,那么你应该多考虑其它的⽅式,⽽不要⽤ SOAP。
import org.apache.l.*;
import org.apache.soap.*;
import org.apache.soap.rpc.*;
import java.io.*;
import java.*;
import java.util.Vector;
public class caService {
public static String getService(String user) {
URL url = null;
try {
url = new URL(
"192.168.0.100:8080/ca3/services/caSynrochnized");
} catch (MalformedURLException mue) {
Message();
}
// This is the main SOAP object
Call soapCall = new Call();
// Use SOAP encoding
soapCall.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
// This is the remote object we're asking for the price
soapCall.setTargetObjectURI("urn:xmethods-caSynrochnized");
/
/ This is the name of the method on the above object
soapCall.setMethodName("getUser");
// We need to send the ISBN number as an input parameter to the method          Vector soapParams = new Vector();
// name, type, value, encoding style
Parameter isbnParam = new Parameter("userName", String.class, user,                  null);
soapParams.addElement(isbnParam);
soapCall.setParams(soapParams);
try {
// Invoke the remote method on the object
Response soapResponse = soapCall.invoke(url, "");
// Check to see if there is an error, return "N/A"
if (atedFault()) {
Fault fault = Fault();
String f = FaultString();
return f;
} else {
// read result
Parameter soapResult = ReturnValue();
// get a string from the result
Value().toString();
}
} catch (SOAPException se) {
Message();
}
}
}
⽅法三:直接使⽤eclipse⽣成客户端.idea类同
以天⽓预报的为例:
www.webxml/WebServices/WeatherWebService.asmx?wsdl
在页⾯上直接Ctrl+s保存⽂件,把xml改成wsdl就⾏
然后复制到项⽬⾥.
webservice服务是需要引⼊axis的jar包的,如下图:
如果没有引⼊saaj-*.jar,可能会报错。
右键点击WeatherWebService.wsdl⽂件,到Web Service项,点击Generate Client⼦菜单。如下图:
在弹出的窗⼝中点击Next,如下图:
选择⽣成的代码要防⽌的包位置,如下图:
点击完成,稍等⽚刻,就能看到⽣成的Java代码了。如下图:
⽣成客户端后,只需要在使⽤的时候,引⼊这个接⼝即可,就好像使⽤本地类⼀样.
补充:在使⽤⽅式⼀时遇到⼏个问题
1.Message part settlementService was not recognized.
解决⽅式:消息部分未被识别。
其实就是就是⽅法名错了,如果只输⼊⽅法名不⾏,就加⼊命名空间
解决⽅式:
Call call = (Call) ateCall();
call.setOperationName(new QName("命名空间地址", "⽅法名"));
3.Unmarshalling Error: 意外的元素 (uri:"jjxg_settlement.platform.bocins/", local:"settle_num")。所需元素为
<{}settle_num>
解决⽅式:
call.addParameter(parametersName, XMLType.XSD_STRING, ParameterMode.IN);//参数名//XSD_STRING:String类型//.IN⼊参// 参数名//对应的是 public String printWord(@WebParam(name = "settle_num") String settle_num);
实际⾛过的弯路:
命名空间的名称,缺少了"/"
call.setOperationName(new QName("jjxg_settlement.platform.bocins/", "printWord"));// 调⽤的⽅法名

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。