shell脚本怎么调用webservice接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本怎么调用webservice接口相关的知识,希望对你有一定的参考价值。

参考技术A 可以在curl web接口就可以了,要加什么参数就接后面,web那边用post或者get去接收参数。 参考技术B webservice理解成一个网站,不过网址是带参数的就可以了啊! 比如我的WEBservice发布后的默认起始页是MyWebservice.asmx 访问的话就是192.168.1.155::85//MyWebservice.asmx就可以了啊,如果要调用里面的方法就是问号方法名就可以了本回答被提问者采纳

java调用webservice接口具体怎么调用

参考技术A 使用HttpClient
用到的jar文件:commons-httpclient-3.1.jar
方法:
预先定义好Soap请求数据,可以借助于XMLSpy Professional软件来做这一步生成。

String soapRequestData = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\">" +
"<soap12:Body>" +
" <getCountryCityByIp xmlns=\"http://WebXml.com.cn/\">" +
" <theIpAddress>219.137.167.157</theIpAddress>" +
" </getCountryCityByIp>" +
" </soap12:Body>" +
"</soap12:Envelope>";

然后定义一个PostMethod,这时需要指定web服务的Url;

PostMethod postMethod = new PostMethod(“http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx”);

然后把Soap请求数据添加到PostMethod中

byte[] b = soapRequestData.getBytes("utf-8");
InputStream is = new ByteArrayInputStream(b,0,b.length);
RequestEntity re = new InputStreamRequestEntity(is,b.length,"application/soap+xml; charset=utf-8");
postMethod.setRequestEntity(re);

最后生成一个HttpClient对象,并发出postMethod请求

HttpClient httpClient = new HttpClient();
statusCode = httpClient.executeMethod(postMethod);
String soapRequestData = postMethod.getResponseBodyAsString();

soapRequestData就是调用web服务的Soap响应数据,是xml格式的,可以通过解析soapRequestData来获得调用web服务的返回值。

以上是关于shell脚本怎么调用webservice接口的主要内容,如果未能解决你的问题,请参考以下文章

接口超时需要怎么处理

shell脚本里的函数怎么调用???

shell从外部读入参数调用另一个shell脚本的问题

shell程序中怎么获取调用参数?

如何在shell脚本里调用另一个shell脚本

如何在shell脚本中调用另一个shell的结果