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

Webservice调用方式:axis,soap详解

阅读更多
转自:[url] http://blog.csdn.net/baiboy4493/archive/2009/03/13/3987526.aspx [/url]
调用webservice,可以首先根据wsdl文件生成客户端,或者直接根据地址调用,下面讨论直接调用地址的两种不同方式:axis和Soap,soap方式主要是用在websphere下

axis方式调用:

import java.util.Date;

import java.text.DateFormat;

import org.apache.axis.client.Call;

import org.apache.axis.client.Service;

import javax.xml.namespace.QName;

import java.lang.Integer;

import javax.xml.rpc.ParameterMode;


public class caClient {



public static void main(String[] args) {


try {

String endpoint = "http://localhost:8080/ca3/services/caSynrochnized?wsdl";

Service service = new Service();

Call call = (Call) service.createCall();

call.setTargetEndpointAddress(endpoint);

call.setOperationName("addUser");

call.addParameter("userName", org.apache.axis.encoding.XMLType.XSD_DATE,

javax.xml.rpc.ParameterMode.IN);

call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);

call.setUseSOAPAction(true);

call.setSOAPActionURI("http://www.my.com/Rpc");

//Integer k = (Integer) call.invoke(new Object[] { i, j });

//System.out.println("result is " + k.toString() + ".");

String temp = "测试人员";

String result = (String)call.invoke(new Object[]{temp});

System.out.println("result is "+result);

}

catch (Exception e) {

System.err.println(e.toString());

}

}

}





soap方式调用

调用java生成的webservice


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();

}

}

}




返回一维数组时

Parameter soapResult = soapResponse.getReturnValue();

String[] temp = (String[])soapResult.getValue();


调用ASP.Net生成的webservice

private String HelloWorld(String uri, String u) {

try {

SOAPMappingRegistry smr = new SOAPMappingRegistry();

StringDeserializer sd = new StringDeserializer();

ArraySerializer arraySer = new ArraySerializer();

BeanSerializer beanSer = new BeanSerializer();

smr.mapTypes(Constants.NS_URI_SOAP_ENC, new QName(

"http://tempuri.org/", "HelloWorldResult"), String.class,

null, sd);

smr.mapTypes(Constants.NS_URI_SOAP_ENC, new QName(

"http://tempuri.org/", "temp"), String.class,

beanSer, beanSer);


URL url = new URL(uri);

Call call = new Call();

call.setSOAPMappingRegistry(smr);

call.setTargetObjectURI("urn:xmethods-Service1");

call.setMethodName("HelloWorld");

call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);


Vector soapParams = new Vector();

soapParams.addElement(new Parameter("temp", String.class, u, null));

call.setParams(soapParams);


Response soapResponse = call.invoke(url,"http://tempuri.org/HelloWorld");


if (soapResponse.generatedFault()) {

Fault fault = soapResponse.getFault();

System.out.println(fault);

} else {

Parameter soapResult = soapResponse.getReturnValue();

Object obj = soapResult.getValue();

System.out.println("===" + obj);

}

} catch (Exception e) {

e.printStackTrace();

}

return null;
} 
/**
  * 调用 C# 的webservice接口
  * SoapRpcMethod(Action = "http://www.tangs.com/Add", 
  * RequestNamespace = "http://www.tangs.com/T", 
  * ResponseNamespace = "http://www.tangs.com/T", 
  * Use = SoapBindingUse.Literal)]
  * 
  * */
 public static void addTest() {
  try {
   Integer i = 1;
   Integer j = 2;

   // WebService URL
   String service_url = "http://localhost:4079/ws/Service.asmx";

   Service service = new Service();
   Call call = (Call) service.createCall();
   call.setTargetEndpointAddress(new java.net.URL(service_url));

   // 设置要调用的方法
   call.setOperationName(new QName("http://www.tangs.com/T", "Add"));

   // 该方法需要的参数
   call.addParameter("a", org.apache.axis.encoding.XMLType.XSD_INT, javax.xml.rpc.ParameterMode.IN);
   call.addParameter("b", org.apache.axis.encoding.XMLType.XSD_INT, javax.xml.rpc.ParameterMode.IN);

   // 方法的返回值类型
   call.setReturnType(org.apache.axis.encoding.XMLType.XSD_INT);

   call.setUseSOAPAction(true);
   call.setSOAPActionURI("http://www.tangs.com/Add");

   // 调用该方法
   Integer res = (Integer) call.invoke(new Object[] { i, j });

   System.out.println("Result: " + res.toString());

  } catch (Exception e) {
   System.err.println(e);
  }
 }

 /**
  * 调用 C# 的webservice接口
  * SoapRpcMethod(Action = "http://www.tangs.com/Add", 
  * RequestNamespace = "http://www.tangs.com/T", 
  * ResponseNamespace = "http://www.tangs.com/T", 
  * Use = SoapBindingUse.Literal)]
  * 
  * */
 public static void helloTest() {
  try {

   String endpoint = "http://localhost:4079/ws/Service.asmx";
   Service service = new Service();
   Call call = (Call) service.createCall();
   call.setTargetEndpointAddress(new java.net.URL(endpoint));
   call.setOperationName(new QName("http://www.tangs.com/T", "HelloWorld"));

   call.setUseSOAPAction(true);
   call.setSOAPActionURI("http://www.tangs.com/Hello");

   String res = (String) call.invoke(new Object[] { null });

   System.out.println("Result: " + res);
  } catch (Exception e) {
   System.err.println(e.toString());
  }
 }
分享到:
评论

相关推荐

    WebService详细解析(axis,xfire,cxf,授权认证加密解密)

    【WebService详解】 WebService是一种基于XML的Web应用程序接口标准,它允许不同的系统和服务之间进行互操作,通过HTTP协议传输数据,使得分布式系统间的通信变得更加简单。WebService的核心技术包括SOAP(Simple ...

    Java+Webservice调用方式详解

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

    Java Webservice调用方式详解

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

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

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

    Springboot集成axis1.4的demo

    首先,了解 Axis1.4:Axis 是一个开源的Java Web服务框架,它允许开发者快速地创建和部署Web服务。Axis1.4是该框架的一个较老版本,尽管它可能不如最新版本的功能强大,但在某些场景下,如支持老版本的Web服务规范或...

    客户端编程方式调用webservice

    本篇文章将详细介绍如何通过客户端编程方式使用Java调用WebService。 首先,让我们理解Java中调用WebService的基本步骤: 1. **获取WSDL文件**:WSDL是WebService的接口定义,它描述了服务的位置、服务提供的操作...

    axis2 webservice入门手册(JS,Java,PHP调用实例源码)www.sietoo.com出品

    - **选择性**:Axis2 提供了多种数据绑定方式,包括直接使用 AXIOM、简单的数据绑定方法、以及使用 XMLBeans、JiBX 或 JAXB 2.0 等高级框架进行绑定。 - **灵活性**:这种多样性使得开发者可以根据具体需求选择最...

    Java开发WebService实例

    使用Axis开发WebService有两种主要方式:DII(Dynamic Invocation Interface)和Stubs。其中,DII方式更为灵活,适用于动态生成WebService接口的情况。 1. **编写Java类**:创建一个简单的Java类,例如`HelloWorld`...

    WebService------AXIS

    1. **易用性**:AXIS提供了一套简单的命令行工具,使得开发者能够快速地发布和调用WebService。它支持Java和多种Web容器,如Tomcat,Jetty等。 2. **跨平台**:AXICE是基于Java的,因此可以运行在任何支持Java的...

    java webservice_axis教程

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

    Eclipse用Axis框架开发WebService

    【知识点详解】 1. **Apache Axis**: Axis 是一个开源项目,属于 Apache 软件基金会,它是 SOAP(简单对象访问协议)引擎,专门用于构建 ...通过这种方式,开发者可以快速构建符合 SOAP 标准的、可互操作的 Web 服务。

    axis生成webservice服务端和客户端详细说明及实例

    它支持SOAP协议,能够帮助开发者快速构建和消费Web服务。本篇文章将详细介绍如何使用Axis来创建服务端和客户端的Web服务,并通过实例进行说明。 一、 Axis生成Web服务服务端 1. 安装与配置Axis 首先,你需要下载并...

    SOAP接口开发chm

    在IT行业中,SOAP(Simple Object Access Protocol)是一种用于交换结构化信息的标准协议,常用于Web服务的实现。它基于XML,允许应用程序通过HTTP等传输协议进行通信,提供了一种标准化的方式来封装请求和响应数据...

    Java调用asmx(WebService)

    ### Java调用asmx(WebService)的关键知识点 #### 一、概述 在现代软件开发过程中,Web服务(WebService)作为一种重要的远程服务访问机制被广泛应用于不同系统间的交互。其中,ASMX是基于SOAP协议的一种WebService...

    axis2各种教程.rar

    Axis2是第二代Apache Axis,它是处理SOAP消息的核心库。它提供了一个高效、灵活且可扩展的框架,用于处理Web服务的生命周期,包括创建、部署、调用和管理。 2. **架构和组件**: Axis2采用了模块化设计,由一系列...

    WebService电子书6本(PDF)

    这本书以实例驱动的方式讲解WebService基础知识,读者可以通过实际操作来理解和应用理论知识。内容可能涵盖使用各种工具和框架(如Tomcat、Eclipse等)创建和调试Web Services,以及如何处理XML数据。 6. ...

    Axis2 WebService常用功能详解

    1. **多种方式编写和发布Web服务**:Axis2支持JAX-RPC和JAX-WS规范,允许开发者选择适合他们项目的API来创建Web服务。同时,它还提供了RESTful Web服务的支持,与SOAP相比,REST更简洁,更适合轻量级的交互。 2. **...

    基于axis2的webservice

    调用Web服务通常分为两种方式:同步调用和异步调用。 - **同步调用**:客户端发送请求,等待服务端返回响应,完成一次交互。 - **异步调用**:客户端发送请求后不等待响应,而是通过回调机制处理服务端的返回。 ...

Global site tag (gtag.js) - Google Analytics