java调用webservice接口
java怎么调用webservice接口呢?不知道的小伙伴来看看小编今天的分享吧!
java调用webservice接口有三种方法。
方法一:直接AXIS调用远程的web service,输入代码:
public void doSelectRiskReportForm(HttpServletRequest request,
HttpServletResponse response){
//调用接口
//方法一:直接AXIS调用远程的web service
try {
String endpoint = "http://localhost:8080/platform-jxcx-service/services/settlementServiceImpl?wsdl";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endpoint);
String parametersName = "settle_num"; // 参数名//对应的是 public String printWord(@WebParam(name = "settle_num") String settle_num);
//
call.setOperationName("printWord"); // 调用的方法名//当这种调用不到的时候,可以使用下面的,加入命名空间名
call.setOperationName(new QName("http://jjxg_settlement.platform.bocins.com/", "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) {
System.err.println(e.toString());
}
}
方法二:直接SOAP调用远程的webservice
下载jar,SOAP 使用 HTTP 传送 XML,尽管HTTP 不是有效率的通讯协议,而且 XML 还需要额外的文件解析(parse),两者使得交易的速度大大低于其它方案。但是XML 是一个开放、健全、有语义的讯息机制,而 HTTP 是一个广泛又能避免许多关于防火墙的问题,从而使SOAP得到了广泛的应用。但是如果效率对你来说很重要,那么你应该多考虑其它的方式,而不要用 SOAP。
import org.apache.soap.util.xml.*;
import org.apache.soap.*;
import org.apache.soap.rpc.*;
import java.io.*;
import java.net.*;
import java.util.Vector;
public class caService {
public static String getService(String user) {
URL url = null;
try {
url = new URL(
"http://192.168.0.100:8080/ca3/services/caSynrochnized");
} catch (MalformedURLException mue) {
return mue.getMessage();
}
// 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 (soapResponse.generatedFault()) {
Fault fault = soapResponse.getFault();
String f = fault.getFaultString();
return f;
} else {
// read result
Parameter soapResult = soapResponse.getReturnValue();
// get a string from the result
return soapResult.getValue().toString();
}
} catch (SOAPException se) {
return se.getMessage();
}
}
}
方法三:直接使用eclipse生成客户端.idea类同
以天气预报的为例:
http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
用编辑器打开下载的文件,将
<s:element ref="s:schema" /> <s:any />
替换成
<s:any minOccurs="2" maxOccurs="2" />
然后将文件另存为weather.wsdl。
打开保存的文件路径输入cmd,输入
wsimport -s . weather.wsdl
显示以上内容,即为生成成功,以下这是生成的文件
新建一个测试类WebserviceTest .java:
public class WebserviceTest {
public static void main(String[] args) {
//也可以使用new WeatherWebService(url)此方法可重新设置请求的地址 URL url=new URL("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl")
WeatherWebService factory = new WeatherWebService();
WeatherWebServiceSoap weatherWebServiceSoap = factory.getWeatherWebServiceSoap(); //WeatherWebServiceSoap为调用的实现类
ArrayOfString strArray = null;
strArray = weatherWebServiceSoap.getWeatherbyCityName("武汉");
System.out.println(strArray.getString());
}
}
显示以下内容 即为调用成功。
-
泡温泉会传染妇科病吗
泡温泉会传染妇科病吗?让我们一起了解一下吧。一般情况下泡温泉是不会传染妇科疾病的。温泉水本身是不含有传染妇科疾病病菌的,但是有一些人由于携带有霉菌或者是滴虫感染,导致温泉水里面...
生活查看全文>> -
最悲伤的情感话语2022 最火情感书语
1、了解为何海面每一年会增涨吗?那是我外溢的想念。潮涨的情况下便是我想念深刻时。2、你高喊着要活的辉煌灿烂,到头来,你却只是平凡一般。3、黎明时分远处变伤痛暴雨就需要来雨带着孤...
句子查看全文>> -
济南违章停车怎么处理违章?
济南违章停车处理流程:1、可以暂时先不处理,到车辆年检前一起处理,这个没有滞纳金;2、要是处理的话,就拿着身份证、驾驶证、车辆行驶证到当地的违处大厅处理;3、到违处大厅把证件交...
问答查看全文>> -
p0497故障码解释和消除方法,P0497故障码怎么解决?
P0497故障码,适用于所有汽车制造商,意思是蒸发排放系统低吹扫流速(Evaporative Emission System Low Purge Flow)。背景知识:蒸发排放...
问答查看全文>> -
前挡玻璃贴膜价格是多少?
前挡玻璃贴膜价格在500元左右:1、前风挡玻璃的可见光透射比不允许小于70%,所有车窗玻璃不允许张贴镜面反光遮阳膜;2、因此,前挡并非不可以贴膜,而是需要张贴达到70%的透光率...
问答查看全文>>
推荐
- 1骁龙7Gen1处理器曝光 骁龙7Gen1最新消息236
- 2晒苹果干为什么要蒸500
- 3荣威rx3怎么对比柯米克?237
- 4捷达汽车的质量怎么样?127
- 5汽车故障代码P1318怎么解决242
- 6名书里的好词好句 名书中的好词好句261
- 7乌尼莫克在中国能上牌吗406
- 8自动挡汽车踩油门抖动怎么回事499