`
eggbucket
  • 浏览: 186543 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

webservice 调用 axis,soap详解

 
阅读更多

转自: http://hardcode.iteye.com/blog/385982
调用webservice,可以首先根据wsdl文件生成客户端,或者直接根据地址调用,下面讨论直接调用地址的两种不同方式:axis和Soap,soap方式主要是用在websphere下

axis方式调用:

Java代码  收藏代码
  1. import  java.util.Date;  
  2.   
  3. import  java.text.DateFormat;  
  4.   
  5. import  org.apache.axis.client.Call;  
  6.   
  7. import  org.apache.axis.client.Service;  
  8.   
  9. import  javax.xml.namespace.QName;  
  10.   
  11. import  java.lang.Integer;  
  12.   
  13. import  javax.xml.rpc.ParameterMode;  
  14.   
  15.   
  16. public   class  caClient {  
  17.   
  18.   
  19.   
  20. public   static   void  main(String[] args) {  
  21.   
  22.   
  23. try  {  
  24.   
  25. String endpoint = "http://localhost:8080/ca3/services/caSynrochnized?wsdl" ;  
  26.   
  27. Service service = new  Service();  
  28.   
  29. Call call = (Call) service.createCall();  
  30.   
  31. call.setTargetEndpointAddress(endpoint);  
  32.   
  33. call.setOperationName("addUser" );  
  34.   
  35. call.addParameter("userName" , org.apache.axis.encoding.XMLType.XSD_DATE,  
  36.   
  37. javax.xml.rpc.ParameterMode.IN);  
  38.   
  39. call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);  
  40.   
  41. call.setUseSOAPAction(true );  
  42.   
  43. call.setSOAPActionURI("http://www.my.com/Rpc" );  
  44.   
  45. //Integer k = (Integer) call.invoke(new Object[] { i, j });   
  46.   
  47. //System.out.println("result is " + k.toString() + ".");   
  48.   
  49. String temp = "测试人员" ;  
  50.   
  51. String result = (String)call.invoke(new  Object[]{temp});  
  52.   
  53. System.out.println("result is " +result);  
  54.   
  55. }  
  56.   
  57. catch  (Exception e) {  
  58.   
  59. System.err.println(e.toString());  
  60.   
  61. }  
  62.   
  63. }  
  64.   
  65. }  



soap方式调用

调用java生成的webservice

Java代码  收藏代码
  1. import  org.apache.soap.util.xml.*;  
  2.   
  3. import  org.apache.soap.*;  
  4.   
  5. import  org.apache.soap.rpc.*;  
  6.   
  7.   
  8. import  java.io.*;  
  9.   
  10. import  java.net.*;  
  11.   
  12. import  java.util.Vector;  
  13.   
  14.   
  15. public   class  caService{  
  16.   
  17. public   static  String getService(String user) {  
  18.   
  19. URL url = null ;  
  20.   
  21. try  {  
  22.   
  23. url=new  URL( "http://192.168.0.100:8080/ca3/services/caSynrochnized" );  
  24.   
  25. catch  (MalformedURLException mue) {  
  26.   
  27. return  mue.getMessage();  
  28.   
  29. }  
  30.   
  31. // This is the main SOAP object   
  32.   
  33. Call soapCall = new  Call();  
  34.   
  35. // Use SOAP encoding   
  36.   
  37. soapCall.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);  
  38.   
  39. // This is the remote object we're asking for the price   
  40.   
  41. soapCall.setTargetObjectURI("urn:xmethods-caSynrochnized" );  
  42.   
  43. // This is the name of the method on the above object   
  44.   
  45. soapCall.setMethodName("getUser" );  
  46.   
  47. // We need to send the ISBN number as an input parameter to the method   
  48.   
  49. Vector soapParams = new  Vector();  
  50.   
  51.   
  52. // name, type, value, encoding style   
  53.   
  54. Parameter isbnParam = new  Parameter( "userName" , String. class , user,  null );  
  55.   
  56. soapParams.addElement(isbnParam);  
  57.   
  58. soapCall.setParams(soapParams);  
  59.   
  60. try  {  
  61.   
  62. // Invoke the remote method on the object   
  63.   
  64. Response soapResponse = soapCall.invoke(url,"" );  
  65.   
  66. // Check to see if there is an error, return "N/A"   
  67.   
  68. if  (soapResponse.generatedFault()) {  
  69.   
  70. Fault fault = soapResponse.getFault();  
  71.   
  72. String f = fault.getFaultString();  
  73.   
  74. return  f;  
  75.   
  76. else  {  
  77.   
  78. // read result   
  79.   
  80. Parameter soapResult = soapResponse.getReturnValue ();  
  81.   
  82. // get a string from the result   
  83.   
  84. return  soapResult.getValue().toString();  
  85.   
  86. }  
  87.   
  88. catch  (SOAPException se) {  
  89.   
  90. return  se.getMessage();  
  91.   
  92. }  
  93.   
  94. }  
  95.   
  96. }  


返回一维数组时

Java代码  收藏代码
  1. Parameter soapResult = soapResponse.getReturnValue();  
  2.   
  3. String[] temp = (String[])soapResult.getValue();  



调用ASP.Net生成的webservice

Java代码  收藏代码
  1. private  String HelloWorld(String uri, String u) {  
  2.   
  3. try  {  
  4.   
  5. SOAPMappingRegistry smr = new  SOAPMappingRegistry();  
  6.   
  7. StringDeserializer sd = new  StringDeserializer();  
  8.   
  9. ArraySerializer arraySer = new  ArraySerializer();  
  10.   
  11. BeanSerializer beanSer = new  BeanSerializer();  
  12.   
  13. smr.mapTypes(Constants.NS_URI_SOAP_ENC, new  QName(  
  14.   
  15. "http://tempuri.org/" "HelloWorldResult" ), String. class ,  
  16.   
  17. null , sd);  
  18.   
  19. smr.mapTypes(Constants.NS_URI_SOAP_ENC, new  QName(  
  20.   
  21. "http://tempuri.org/" "temp" ), String. class ,  
  22.   
  23. beanSer, beanSer);  
  24.   
  25.   
  26. URL url = new  URL(uri);  
  27.   
  28. Call call = new  Call();  
  29.   
  30. call.setSOAPMappingRegistry(smr);  
  31.   
  32. call.setTargetObjectURI("urn:xmethods-Service1" );  
  33.   
  34. call.setMethodName("HelloWorld" );  
  35.   
  36. call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);  
  37.   
  38.   
  39. Vector soapParams = new  Vector();  
  40.   
  41. soapParams.addElement(new  Parameter( "temp" , String. class , u,  null ));  
  42.   
  43. call.setParams(soapParams);  
  44.   
  45.   
  46. Response soapResponse = call.invoke(url,"http://tempuri.org/HelloWorld" );  
  47.   
  48.   
  49. if  (soapResponse.generatedFault()) {  
  50.   
  51. Fault fault = soapResponse.getFault();  
  52.   
  53. System.out.println(fault);  
  54.   
  55. else  {  
  56.   
  57. Parameter soapResult = soapResponse.getReturnValue();  
  58.   
  59. Object obj = soapResult.getValue();  
  60.   
  61. System.out.println("==="  + obj);  
  62.   
  63. }  
  64.   
  65. catch  (Exception e) {  
  66.   
  67. e.printStackTrace();  
  68.   
  69. }  
  70.   
  71. return   null ;  
  72. }   
  73. /**  
  74.   * 调用 C# 的webservice接口  
  75.   * SoapRpcMethod(Action = "http://www.tangs.com/Add",   
  76.   * RequestNamespace = "http://www.tangs.com/T",   
  77.   * ResponseNamespace = "http://www.tangs.com/T",   
  78.   * Use = SoapBindingUse.Literal)]  
  79.   *   
  80.   * */   
  81.  public   static   void  addTest() {  
  82.   try  {  
  83.    Integer i = 1 ;  
  84.    Integer j = 2 ;  
  85.   
  86.    // WebService URL   
  87.    String service_url = "http://localhost:4079/ws/Service.asmx" ;  
  88.   
  89.    Service service = new  Service();  
  90.    Call call = (Call) service.createCall();  
  91.    call.setTargetEndpointAddress(new  java.net.URL(service_url));  
  92.   
  93.    // 设置要调用的方法   
  94.    call.setOperationName(new  QName( "http://www.tangs.com/T" "Add" ));  
  95.   
  96.    // 该方法需要的参数   
  97.    call.addParameter("a" , org.apache.axis.encoding.XMLType.XSD_INT, javax.xml.rpc.ParameterMode.IN);  
  98.    call.addParameter("b" , org.apache.axis.encoding.XMLType.XSD_INT, javax.xml.rpc.ParameterMode.IN);  
  99.   
  100.    // 方法的返回值类型   
  101.    call.setReturnType(org.apache.axis.encoding.XMLType.XSD_INT);  
  102.   
  103.    call.setUseSOAPAction(true );  
  104.    call.setSOAPActionURI("http://www.tangs.com/Add" );  
  105.   
  106.    // 调用该方法   
  107.    Integer res = (Integer) call.invoke(new  Object[] { i, j });  
  108.   
  109.    System.out.println("Result: "  + res.toString());  
  110.   
  111.   } catch  (Exception e) {  
  112.    System.err.println(e);  
  113.   }  
  114.  }  
  115.   
  116.  /**  
  117.   * 调用 C# 的webservice接口  
  118.   * SoapRpcMethod(Action = "http://www.tangs.com/Add",   
  119.   * RequestNamespace = "http://www.tangs.com/T",   
  120.   * ResponseNamespace = "http://www.tangs.com/T",   
  121.   * Use = SoapBindingUse.Literal)]  
  122.   *   
  123.   * */   
  124.  public   static   void  helloTest() {  
  125.   try  {  
  126.   
  127.    String endpoint = "http://localhost:4079/ws/Service.asmx" ;  
  128.    Service service = new  Service();  
  129.    Call call = (Call) service.createCall();  
  130.    call.setTargetEndpointAddress(new  java.net.URL(endpoint));  
  131.    call.setOperationName(new  QName( "http://www.tangs.com/T" "HelloWorld" ));  
  132.   
  133.    call.setUseSOAPAction(true );  
  134.    call.setSOAPActionURI("http://www.tangs.com/Hello" );  
  135.   
  136.    String res = (String) call.invoke(new  Object[] {  null  });  
  137.   
  138.    System.out.println("Result: "  + res);  
  139.   } catch  (Exception e) {  
  140.    System.err.println(e.toString());  
  141.   }  
  142.  } 
分享到:
评论

相关推荐

    Java Webservice调用方式详解

    Java WebService调用方式详解主要涉及两种方法:Axis和SOAP。这两种方式都是用来与Web服务进行交互,调用远程服务的方法。以下将详细介绍这两种方法。 1. Axis方式调用: Axis是Apache的一个开源项目,它提供了一...

    Java+Webservice调用方式详解

    ### Java+Webservice调用方式详解 #### 一、引言 随着互联网技术的发展与企业级应用需求的增长,Web服务(Webservice)作为一种基于XML的标准协议,在不同平台间实现服务互操作方面扮演着越来越重要的角色。Java...

    详解axis调用webservice实例

    标题中的“详解axis调用webservice实例”表明我们将探讨如何使用Apache Axis库来调用Web服务。Apache Axis是一个开源工具,它允许Java开发者创建、部署和使用Web服务。在这个实例中,我们会有机会看到实际的Java代码...

    webservice for axis客户端详尽代码

    本资源“webservice for axis客户端详尽代码”提供了一套完整的Axis客户端代码示例,对于学习和理解如何在Java应用中使用Axis来调用Web服务极具价值。 一、Web Service基础知识 Web服务通常通过SOAP(Simple ...

    java webservice_axis教程

    - **WebService会话管理**: Axis支持Session管理,使得跨多个WebService调用时可以保持会话状态。 - **使用控制台Dos命令发布WebService**: 通过命令行工具,可以方便地发布和管理Web服务。 - **用Spring的...

    WebService之Axis2教程

    ### WebService之Axis2教程知识点总结 #### 一、Axis2简介及应用场景 - **Axis2定义**:Axis2是一款高性能、轻量级且灵活的Web服务引擎,它基于Apache软件基金会开发,作为Apache Axis 1.x的下一代产品,不仅支持...

    Java WebService 简单实例 方式二(axis1直接调用方式)

    ### Java WebService 简单实例 方式二(axis1直接调用方式) #### 背景介绍 在软件开发领域,特别是在企业级应用中,Web服务作为一种标准的技术规范被广泛采用,它允许不同系统间进行通信与数据交换。Java Web ...

    [JAVA]-Axis-Webservice-Demo

    【JAVA】Axis Webservice Demo详解 在Java开发中, Axis是一个强大的开源工具,它用于创建和部署Web服务。本文将详细介绍如何使用Axis进行Web服务的发布与调用,以及涉及的相关知识点。 一、Axis简介 Axis是Apache...

    WebService之axis的复杂对象传输方案

    在Web服务领域,Axis是一种广泛使用的开源工具包,它支持SOAP协议,并且能够帮助开发者轻松地创建和调用Web服务。对于复杂的业务场景,往往需要在客户端和服务端之间传输复杂的Java对象,这就涉及到如何在WebService...

    webservice新手axis2超详细教程

    【Axis2】Web服务引擎详解及新手入门 Axis2是Apache软件基金会开发的一款高级Web服务引擎,它是Axis1.x的全面升级版,旨在提供更高效、更灵活的Web服务实现。Axis2支持SOAP 1.1和1.2协议,并且集成了RESTful风格的...

    WebService axis2使用说明

    **WebService与Axis2详解** 1. **WebService** WebService是一种基于开放标准(如SOAP、WSDL和UDDI)的,使得不同系统间能够相互通信的技术。它允许应用程序通过网络调用彼此的功能,从而实现分布式计算。 1.1. ...

    java axis webservice 开发实例

    Java Axis WebService 开发实例详解 在Java世界中,开发Web服务时,Axis是一个非常流行的开源工具,它允许开发者创建、部署和使用Web服务。本实例将深入探讨如何使用Axis来构建一个简单的Web服务,并进行调用。这个...

    Axis2 WebService常用功能详解

    【Axis2 WebService常用功能详解】 Axis2是一个广泛使用的Web服务引擎,它为开发者提供了创建和部署Web服务的强大工具。由于其灵活性和丰富的特性,Axis2在不同场景下都有着广泛的应用,比如作为服务端接口发布Java...

    webService服务搭建详解

    Axis2是一款功能强大、灵活且高效的WebService框架,广泛应用于Java应用中的远程服务调用场景。本文旨在帮助读者理解Axis2的基本原理以及如何通过Axis2来发布Web服务。 #### 一、Axis2简介及安装配置 ##### 1. ...

    axis2搭建webService并包含android调用此WebService服务案例

    ### Android调用eclipse+axis2搭建的webService服务详解 #### Eclipse+axis2+Tomcat搭建webService服务 **准备工作** 在开始之前,确保你有以下工具: 1. **Eclipse**: 用于开发Java项目和webService。可以从...

    客户端编程方式调用webservice

    WebService的核心技术包括SOAP(Simple Object Access Protocol)、WSDL(Web Services Description Language)和UDDI(Universal Description, Discovery, and Integration)。本篇文章将详细介绍如何通过客户端...

    WebService------AXIS

    WebService——AXIS详解 在IT领域,WebService是一种基于标准的、平台无关的、可以在不同系统之间交换数据的方式。它利用XML(可扩展标记语言)作为数据格式,HTTP作为传输协议,SOAP(简单对象访问协议)作为消息...

Global site tag (gtag.js) - Google Analytics