Axis 下 的WebService 客户端接入
程序员文章站
2022-06-14 16:17:14
...
//Axis 下 的WebService 客户端接入 简单模版
import java.rmi.RemoteException; import javax.xml.namespace.QName; import javax.xml.rpc.ParameterMode; import javax.xml.rpc.ServiceException; import javax.xml.soap.SOAPException; import org.apache.axis.client.Call; import org.apache.axis.client.Service; import org.apache.axis.message.SOAPHeaderElement; public class WSUnit2 { public WSUnit2() { } /** * @param args */ public static void main(String[] args) { try { // 服务端的url,需要根据情况更改 String endpointURL = "http://www.xxx.cn/xxxServiceTest/WebService.asmx"; String namespace = "http://www.xxx.cn/"; String methodName = "GetDestCityList"; Service service = new Service(); Call call = (Call) service.createCall(); call.setTargetEndpointAddress(endpointURL); call.setSOAPActionURI(namespace + methodName); call.setOperationName(new QName(namespace, methodName)); call.setUseSOAPAction(true); // 由于需要认证,故需要设置调用的用户名和密码。 SOAPHeaderElement soapHeaderElement = new SOAPHeaderElement( namespace, "StationServiceHeader"); soapHeaderElement.setNamespaceURI(namespace); try { soapHeaderElement.addChildElement("UserName").setValue("xxx"); soapHeaderElement.addChildElement("PassWord").setValue("xxx"); } catch (SOAPException e) { e.printStackTrace(); } call.addHeader(soapHeaderElement); //设置返回类型 call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING); //参数类型 call.addParameter(new QName(namespace, "start_city"), org.apache.axis.encoding.XMLType.XSD_STRING, ParameterMode.IN); call.addParameter(new QName(namespace, "end_city"), org.apache.axis.encoding.XMLType.XSD_STRING, ParameterMode.IN); //执行调用 String start_city = "浙江"; String end_city = "hz"; String result = (String) call.invoke(new Object[] { start_city, end_city }); System.out.println("result = " + result); } catch (ServiceException e) { e.printStackTrace(); } catch (RemoteException e) { e.printStackTrace(); } } }
推荐阅读
-
基于JAVA中使用Axis发布/调用Webservice的方法详解
-
基于JAVA中使用Axis发布/调用Webservice的方法详解
-
linux下安装php的memcached客户端
-
使用httplib模块来制作Python下HTTP客户端的方法
-
Windows 下的免费 SSH 客户端工具介绍
-
C语言学习之Linux下TCP服务器与客户端的实现
-
Linux下OpenSSL客户端中使用req命令来生成证书的教程
-
php下获取客户端ip地址的函数
-
Unary模式下客户端创建 default-executor 和 resolver-executor 线程和从启动到执行grpc_connector_connect的主要流程
-
axis2通过城市名称调用.net写的asmx WebService查询天气实例