找回密码
 快速注册

QQ登录

只需一步,快速开始

查看: 3159|回复: 11

java 私塾课堂笔记——WebService

[复制链接]
solimh 发表于 2011-5-11 11:21:18 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?快速注册

×
java 私塾课堂笔记——WebService

一:什么是WebService
    WebService(Web服务)是使应用程序可以以与平台和编程语言无关的方式进行相互通信的一项技术。Web 服务是一个软件接口,它描述了一组可以在网络上通过标准化的 XML 消息传递访问的操作。它使用基于 XML 语言的协议来描述要执行的操作或者要与另一个 Web 服务交换的数据。一组以这种方式交互的 Web 服务在面向服务的体系结构(Service-Oriented Architecture,SOA)中定义了特殊的 Web 服务应用程序。
  1:Web 服务体系结构
     Web 服务体系结构描述了一个框架,在这个框架中服务可在分布式计算环境中被动态地描述、发布、发现和调用。这个体系结构定义了四个基本构件(它们的名称在接下去的两段中用粗体字来标明)和三个决定这些构件之间如何交互的标准操作。
     服务这个概念处于 Web 服务模型的核心,它被定义为执行某种任务(如订购图书或翻译信件)的一组操作。在 Web 服务的上下文中,可以使用标准的 XML 技术(如 SOAP、WSDL 和 UDDI)来描述、发现和调用服务。
     服务由服务提供者来实现和发布。服务由服务请求者来发现和调用。有关服务的信息可被保存在服务注册中心。下面这张图说明了这三个构件之间是如何交互的。
【此处有图,可以到java 私塾官网下载完整笔记:www.javass.cn

     从企业角度看,服务提供者是服务的所有者。从技术角度看,它是提供对服务的访问的平台。同样,服务请求者既是一个需要完成一项具体任务的企业,也是发现和调用服务所需的工具。
     可以从如下角度对上图所示的三种基本操作进行描述:
         a.发布(Publish):由服务提供者来执行以使大家知道服务的存在和功能。
         b.发现(Find):由服务请求者来执行以定位能满足某种需要的服务。
         c.绑定(Bind):由服务请求者来执行以调用由服务提供者提供的服务。

二:能干什么
  1:成为各孤立的站点之间的信息能够相互通信、共享的一种接口
  2:由于webservice基于标准的协议和xml,使得大量异构程序和平台之间就能够互相操作,大家都面向webservice,而不用去关心具体的实现是由什么开发语言提供的。

三:有什么
  1:基本 Web 服务规范
  Web 服务规范通常归为两类:基本 Web 服务规范和扩展 Web 服务规范。基本规范有:
  (1)SOAP(Simple Object Access Protocol):
       简单对象访问协议是在分散或分布式的环境中交换信息并执行远程过程调用的轻量级协议,是一个基于XML的协议。使用SOAP,不用考虑任何特定的传输
       协议(最常用的还是HTTP协议),可以允许任何类型的对象或代码,在任何平台上,以任何一种语言相互通信。
       SOAP包括四个部分:
          a.SOAP封装(envelop),封装定义了一个描述消息中的内容是什么,是谁发送的,谁应当接受并处理它以及如何处理它们的框架;
          b.SOAP编码规则(encoding rules),用于表示应用程序需要使用的数据类型的实例;
          c.SOAP RPC表示(RPC representation),表示远程过程调用和应答的协定;
          d.SOAP绑定(binding),使用底层协议交换信息。
       *应用中比较关注的是envelop,由一个或多个Header和一个Body组成。
  (2)WSDL(Web Services description Language):
       Web服务描述语言是详细说明描述基于 SOAP 的 Web 服务的标准方式的规范,由Ariba、Intel、IBM、MS等共同提出,包括消息应采用的形式以及应将其发送到何处。其中还详细说明了此类消息的响应。当与相应的工具结合使用时,WSDL 允许以编程方式创建对 Web 服务的调用,甚至不用知道所查找的 Web 服务是什么;应用程序可以从 WSDL 文件中提取这些详细信息,并提供要使用的编程接口。
       可描述Web服务的三个基本属性:
          ?服务做些什么——服务所提供的操作(方法)
          ?如何访问服务——和服务交互的数据格式以及必要协议
          ?服务位于何处——协议相关的地址,如URL
       WSDL文档以端口集合的形式来描述Web服务,WSDL 服务描述包含对一组操作和消息的一个抽象定义,绑定到这些操作和消息的一个具体协议,和这个绑定的一个网络端点规范。
       WSDL描述语言一般包含三部分
          (1)服务做些什么部分:包括了type、message和portType元素
       Type:定义了Web Service使用的数据结构(使用XML Schema定义)
       Message:一个Message是SOAP的基本通信元素。每个Message可以有一个或多个Part,每个Part代表一个参数。
       PortType:消息汇总为不同的操作并归入到一个被称为portType的实体中。一个portType代表一个接口(Web Service支持的操作集合),每个Web Service可以有多个接口,它们都使用portType表示。每个操作又包含了input和output部分。
          (2)如何访问服务部分:包含binding元素
       binding元素将portType绑定到特定的通信协议上(如HTTP上的SOAP协议)
          (3)服务位于何处部分:由service元素组成
       它将portType,binding以及Web Service实际的位置(URI)放在一起描述

  1. <?xml version="1.0" ebcoding="UTF-8"?>
  2. -<wsdl:definitiongs xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd"
  3.   xmlsn:ns="http://ws.javasscn" xmlns:wsaw="http://www.w3org/2006/05/addressing/wsdl"
  4.   xmlsn:http="http://schemas.xmlsoap.org/wsdl/http" xmlsn:xs="http://www.w3org/2001/XMLSchema"
  5.   xmlsn:mime=" http://schemas.xmlsoap.org/wsdl/mime" xmlsn:soap=" http://schemas.xmlsoap.org/wsdl/soap"
  6.   xmlsn:soap12="http://schemas.xmlsoap.org/wsdl/soap12" targetNamespace=http://ws.javass.cn>
  7.   <wsdl:documentation>HelloWorldService</wsdl:documentation>
  8. +<wsdl:types>
  9. +<wsdl:message name="helloWorldServiceRequest">
  10. +<wsdl:message name="helloWorldServiceResponse">
  11. +<wsdl:portType name="HelloWorldService portType">
  12. +<wsdl:binding name="HelloWorldServiceSoap11Binding"type="ns: HelloWorldService portType">
  13. +<wsdl:binding name="HelloWorldServiceSoap12Binding" type="ns: HelloWorldService portType">
  14. +<wsdl:binding name="HelloWorldServiceHttpBinding" type="ns: HelloWorldService portType">
  15. +<wsdl:service name="HelloWorldService
  16. </wsdl:definitiongs>
复制代码
(3)WSDD(Web Service Deployment Descriptor)就是WEB服务分布描述, 它定义了WEB服务的接口,如服务名、提供的方法、方法的参数等信息。
          (4)UDDI(Universal Description, Discovery and Integration):
               统一描述、发现和集成是一项从最初提出后发生了一系列变化的标准。UDDI用于集中存放和查找WSDL描述文件,起着目录服务器的作用。
               其最初的目的是为了给各个公司提供在全球注册中心中注册服务并在此注册中心中搜索可能想使用的服务的机制。不过,由于很多公司对于将其系统对外开放的问题上都相当保守,这个目标并没有完全实现。但是,很多公司已将 UDDI 作为内部的服务及服务信息注册中心使用
  2:扩展 Web 服务规范
     总共有数十种 WS-* 规范,其中几种对企业尤为有用。即:
        WS-Security:此规范处理加密和数字签名,允许创建特定类型的应用程序,以防止窃听消息,且能实现不可否认功能。
        WS-Policy:此规范对 WS-Security 进行了扩展,允许更具体地说明谁可以采用何种方式使用服务。
        WS-I:尽管 Web 服务应设计成具有互操作性,但在实际中,各个规范对不同实现的解释的灵活性常常足以导致出现问题。WS-I 提供了一组可用于防止出现各种问题的标准和实践,并提供了标准化测试来检查问题。
        WS-BPEL:单个服务很好处理,但应用程序在大多数情况下则较难处理。企业级计算要求至少将多个服务组合为一个完整的系统,而 WS-BPEL 提供了用于指定创建此类系统所必需的交互(如分支和并发处理)。


——未完待续——
拉莫斯 发表于 2011-5-11 22:55:46 | 显示全部楼层
哦?这块我还没学习,最近依旧做那个在线答疑等页面美化,这个是xml的应用,什么时候出来三大框架?。
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-14 14:51:16 | 显示全部楼层
三大框架已经发过了
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-14 15:23:10 | 显示全部楼层
本帖最后由 solimh 于 2011-5-17 10:21 编辑

四:怎么做
  (一)目前常见的实现方式:
        开源最流行的是Apache的Axis(Apache Extensible Interaction System),可以跟所有的主流服务器结合。
        SUN,早期时JAX-RPC,现在是JAX-WS
        IBM采用的是自行开发的WSDK(IBM WebSphere SDK for Web Services)
        我们采用:tomcat+axis2
  (二):HelloWorld一
       1:构建运行环境
         (1)把axis2-1.4.1-war.zip中的axis2.war包放到tomcat的webapps中,然后启动tomcat,会发布axis2,如果启动没有错误,就可以下一步
         (2)验证:在地址栏输入http://localhost:8080/axis2 ,如果能正常显示,说明axis2的运行环境已经OK了。可以点击Administration,然后输入用户名admin和密码axis2进入管理台。
       2:构建开发环境
          把axis2-1.4.1-bin.zip中lib里面的都引入到当前的开发环境中就好了
       3:写自己的第一个服务的类

  1. package cn.javass.ws.helloworld.server;
  2. import org.apache.axiom.om.OMAbstractFactory;
  3. import org.apache.axiom.om.OMElement;
  4. import org.apache.axiom.om.OMFactory;
  5. import org.apache.axiom.om.OMNamespace;
  6. public class MyService {
  7.    /**
  8.     * 读取client端传递来的参数,然后执行自己的功能,并返回值给客户端
  9.     */
  10.    public OMElement helloWorldService(OMElement in) {
  11.       //1:接收参数,将in转换为String
  12.       String requestMessage = in.getText();
  13.       //2:这里添加服务端的具体处理
  14.      
  15.       //3:准备返回
  16.       //3.1 创建响应用的SOAP包。
  17.       OMFactory f = OMAbstractFactory.getOMFactory();
  18.       //3.2 OMNamespace指定此SOAP文档名称空间,可以随便写
  19.       OMNamespace omNs = f.createOMNamespace("[url=http://www.javass.cn/]http://www.javass.cn/[/url]", "cc");
  20.       //3.3 创建返回元素,并指定其在omNs指代的名称空间中。
  21.       OMElement retElement = f.createOMElement("myRet", omNs);
  22.       //3.4 指定返回元素的文本内容
  23.       String retMessage = requestMessage + ",这是第一个WebService,已经处理!";
  24.       retElement.setText(retMessage);
  25.    
  26.       return retElement;
  27.    }
  28. }
复制代码

       4:在src目录下面建立一个META-INF的文件夹,在里面放Services.xml文件

  1. <service name="HelloWorldService">
  2.   <parameter name="ServiceClass" locked="xsd:false">
  3.     cn.javass.ws.helloworld.server.MyService
  4.   </parameter>
  5.   <operation name="helloWorldService">
  6.     <messageReceiver
  7.       class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver" />
  8.   </operation>
  9. </service>
复制代码

       5:运行cmd,到classes的目录,然后打包,输入:jar cvf hello.aar . ,注意后面的”.”不能少,表示输出到当前位置,然后打出一个hello.aar的包来。
       6:然后可以直接把这个文件拷贝到tomcat的webapps\axis2\WEB-INF\services文件夹下面,就会自动发布了。当然也可以进到axis2的控制台,然后使用upload service的方式也行。如果发布没有错误,那么服务就做好了。
       7:开始写客户端

  1. package cn.javass.ws.helloworld;
  2. import org.apache.axiom.om.OMAbstractFactory;
  3. import org.apache.axiom.om.OMElement;
  4. import org.apache.axiom.om.OMFactory;
  5. import org.apache.axiom.om.OMNamespace;
  6. import org.apache.axis2.AxisFault;
  7. import org.apache.axis2.Constants;
  8. import org.apache.axis2.addressing.EndpointReference;
  9. import org.apache.axis2.clustering.MessageSender;
  10. import org.apache.axis2.client.Options;
  11. import org.apache.axis2.client.ServiceClient;
  12. public class Client {
  13.   public static void main(String[] args) {
  14.     try {
  15.       //1:targetEPR指定打包的Service(hello.aar文件)在容器中的物理位置
  16.       EndpointReference targetEPR = new EndpointReference(
  17.           "[url=http://localhost:9000/axis2/services/HelloWorldService]http://localhost:9000/axis2/services/HelloWorldService[/url]");
  18.       
  19.       //2:准备客户端调用
  20.       ServiceClient sender = new ServiceClient();
  21.       //2.1 准备options,设置要访问的web服务在什么地方
  22.       Options options = new Options();
  23.       options.setTo(targetEPR);
  24.       sender.setOptions(options);
  25.       
  26.       //2.2 创建request的SOAP包
  27.       OMFactory f = OMAbstractFactory.getOMFactory();
  28.       //2.3 OMNamespace指定此SOAP文档名称空间,要跟服务那边的对应上
  29.       OMNamespace omNs = f.createOMNamespace("[url=http://www.javass.cn/]http://www.javass.cn/","cc[/url]");
  30.       //2.4 创建元素reqElement,并指定其在omNs指代的名称空间中,第一个参数就是要访问的operation
  31.       OMElement reqElement = f.createOMElement("helloWorldService", omNs);
  32.       //2.5 指定元素的文本内容。
  33.       reqElement.setText("测试第一个WebService");
  34.       //3:发出request SOAP,同时将得到的远端由helloWorldService方法返回的信息保存到result
  35.       OMElement result = sender.sendReceive(reqElement);
  36.       System.out.println(result);
  37.     } catch (Exception axisFault) {
  38.       axisFault.printStackTrace();
  39.     }
  40.   }
  41. }
复制代码

       8:运行结果如下:
          客户端:
          <cc:myRet xmlns:cc="http://www.javass.cn/">测试第一个WebService,这是第一个WebService,已经处理!</cc:myRet>
  (三):HelloWorld二(Pojo)
       1:把axis2-1.4.1-bin包解开,然后把下面直到bin的路径设置到path中去,还要设置AXIS2_HOME的值
       2:到axis2-1.4.1-bin包的samples文件夹中,找到quickstart,建立一个工程来测试和运行它,类文件如下:

  1. package samples.quickstart.service.pojo;
  2. import java.util.HashMap;
  3. public class StockQuoteService {
  4.     ∵ HashMap map = new HashMap();
  5.     public double getPrice(String symbol) {
  6.         Double price = (Double) map.get(symbol);
  7.         if(price != null){
  8.             return price.doubleValue();
  9.         }
  10.         return 42.00;
  11.     }
  12.     public void update(String symbol, double price) {
  13.         map.put(symbol, new Double(price));
  14.     }
  15. }
复制代码

       3:运行cmd,把路径设置到classes下面,然后运行:java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of META-INF/StockQuoteService.wsdl,就会生成相应的wsdl文件
       4:在META-INF中建立services文件,内容如下:

  1. <service name="StockQuoteService" scope="application">
  2.     <description>
  3.         Stock Quote Sample Service
  4.     </description>
  5.     <messageReceivers>
  6.         <messageReceiver
  7.             mep="[url=http://www.w3.org/2004/08/wsdl/in-only]http://www.w3.org/2004/08/wsdl/in-only[/url]"
  8.     class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver"/>
  9.         <messageReceiver
  10.             mep="[url=http://www.w3.org/2004/08/wsdl/in-out]http://www.w3.org/2004/08/wsdl/in-out[/url]"
  11.     class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
  12.     </messageReceivers>
  13.     <parameter name="ServiceClass">
  14.         samples.quickstart.service.pojo.StockQuoteService
  15.     </parameter>
  16. </service>
复制代码

       5:运行cmd,把路径设置到classes下面,然后运行:jar -cvf ht.aar.,注意后面有个”.”,然后打好包,文件名称叫ht.aar
       6:把ht.aar拷贝到tomcat的webapps\axis2\WEB-INF\services
       7:启动tomcat,然后运行http://localhost:8080/axis2/services/listServices就可以查看所有发布的服务了
       8:可以通过http://localhost:8080/axis2/services/StockQuoteService?wsdl来查看wsdl的文件,对应的schema在http://localhost:8080/axis2/services/StockQuoteService?xsd

  1. <?xml version="1.0" ebcoding="UTF-8"?>
  2. -<wsdl:definitiongs xmlns:wsdl="[url=http://schemas.xmlsoap.org/wsdl/]http://schemas.xmlsoap.org/wsdl/[/url]" xmlns:ns1="[url=http://org.apache.axis2/xsd]http://org.apache.axis2/xsd[/url]"
  3.   xmlsn:ns="[url=http://pojo.javasscn]http://pojo.javasscn[/url]" xmlns:wsaw="[url=http://www.w3org/2006/05/addressing/wsdl]http://www.w3org/2006/05/addressing/wsdl[/url]"
  4.   xmlsn:http="[url=http://schemas.xmlsoap.org/wsdl/http]http://schemas.xmlsoap.org/wsdl/http[/url]" xmlsn:xs="[url=http://www.w3org/2001/XMLSchema]http://www.w3org/2001/XMLSchema[/url]"
  5.   xmlsn:mime=" [url=http://schemas.xmlsoap.org/wsdl/mime]http://schemas.xmlsoap.org/wsdl/mime[/url]" xmlsn:soap=" [url=http://schemas.xmlsoap.org/wsdl/soap]http://schemas.xmlsoap.org/wsdl/soap[/url]"
  6.   xmlsn:soap12="[url=http://schemas.xmlsoap.org/wsdl/soap12]http://schemas.xmlsoap.org/wsdl/soap12[/url]" targetNamespace=http://pojo.javass.cn>
  7.   <wsdl:documentation>MyPojoService</wsdl:documentation>
  8. +<wsdl:types>
  9. +<wsdl:message name="testRequest">
  10. +<wsdl:message name="testResponse">
  11. +<wsdl:portType name="MyPojoService portType">
  12. +<wsdl:binding name="MyPojoServiceSoap11Binding"type="ns: MyPojoService portType">
  13. +<wsdl:binding name="MyPojoServiceSoap12Binding" type="ns:MyPojoService portType">
  14. +<wsdl:binding name="MyPojoServiceHttpBinding" type="ns:MyPojoService portType">
  15. +<wsdl:service name="MyPojoService
  16. </wsdl:definitiongs>
复制代码

       9:可以在IE里面进行测试,测试步骤如下:
         (1)运行下述语句进行查看
http://localhost:8080/axis2/services/StockQuoteService/getPrice?symbol=javasscn会得到如下结果:
<ns:getPriceResponse xmlns:ns="http://pojo.service.quickstart.samples">
  <ns:return>42.0</ns:return>
</ns:getPriceResponse>
         (2)然后运行下述语句进行修改
http://localhost:8080/axis2/services/StockQuoteService/update?symbol=javasscn&price=100
         (3)再次运行(1),你会发现结果变成了:
<ns:getPriceResponse xmlns:ns="http://pojo.service.quickstart.samples">
  <ns:return>100.0</ns:return>
</ns:getPriceResponse>

——未完——

回复

使用道具 举报

 楼主| solimh 发表于 2011-5-18 14:55:53 | 显示全部楼层
  (四):HelloWorld二改进版(AXIOM)
       1:类文件修改成为

  1. package samples.quickstart.service.axiom;

  2. import javax.xml.stream.XMLStreamException;
  3. import org.apache.axiom.om.OMAbstractFactory;
  4. import org.apache.axiom.om.OMElement;
  5. import org.apache.axiom.om.OMFactory;
  6. import org.apache.axiom.om.OMNamespace;

  7. import java.util.HashMap;

  8. public class StockQuoteService {
  9.   ∵ HashMap map = new HashMap();
  10.   
  11.   public OMElement getPrice(OMElement element) throws XMLStreamException {
  12.     //构建节点本身
  13.     element.build();
  14.     //从父节点删除本节点
  15.     element.detach();

  16.     //获取节点的第一个子节点
  17.     OMElement symbolElement = element.getFirstElement();
  18.     //获取这个子节点的文本值
  19.     String symbol = symbolElement.getText();

  20.     //准备返回的值
  21.     String returnText = "42";
  22.     Double price = (Double) map.get(symbol);
  23.     if (price != null) {
  24.       returnText = "" + price.doubleValue();
  25.     }

  26.     //组装需要返回的xml,值也包含在这个xml当中
  27.     //<getPriceResponse>
  28.     //   <price>
  29.     //       returnText
  30.     //   </price>
  31.     //</getPriceResponse>
  32.     OMFactory fac = OMAbstractFactory.getOMFactory();
  33.     OMNamespace omNs = fac.createOMNamespace(
  34.         "http://axiom.service.quickstart.samples/xsd", "tns");
  35.     OMElement method = fac.createOMElement("getPriceResponse", omNs);
  36.     OMElement value = fac.createOMElement("price", omNs);
  37.     value.addChild(fac.createOMText(value, returnText));
  38.     method.addChild(value);

  39.     return method;
  40.   }

  41.   public void update(OMElement element) throws XMLStreamException {
  42.     //构建节点本身
  43.     element.build();
  44.     //从父节点删除本节点
  45.     element.detach();

  46.     //获取节点的第一个子节点——symbol
  47.     OMElement symbolElement = element.getFirstElement();
  48.     //获取这个子节点的文本值
  49.     String symbol = symbolElement.getText();
  50.     //获取节点的第二个字节点——price
  51.     OMElement priceElement = (OMElement) symbolElement.getNextOMSibling();
  52.     //获取price的值
  53.     String price = priceElement.getText();

  54.     //把值放置到缓存中
  55.     map.put(symbol, new Double(price));
  56.   }
  57. }
复制代码
2:service.xml如下:

  1. <service name="StockQuoteService" scope="application">
  2.     <description>
  3.         Stock Quote Service
  4.     </description>
  5.     <operation name="getPrice">
  6.         <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
  7.     </operation>
  8.     <operation name="update">
  9.         <messageReceiver class="org.apache.axis2.receivers.RawXMLINOnlyMessageReceiver"/>
  10.     </operation>
  11.     <parameter name="ServiceClass">samples.quickstart.service.axiom.StockQuoteService</parameter>
  12. </service>
复制代码
3:重新打包,然后拷贝到webapps\axis2\WEB-INF\services下面,覆盖ht.aar
       4:客户端:

  1. package samples.quickstart.service.axiom;

  2. import org.apache.axiom.om.OMAbstractFactory;
  3. import org.apache.axiom.om.OMElement;
  4. import org.apache.axiom.om.OMFactory;
  5. import org.apache.axiom.om.OMNamespace;
  6. import org.apache.axis2.AxisFault;
  7. import org.apache.axis2.Constants;
  8. import org.apache.axis2.addressing.EndpointReference;
  9. import org.apache.axis2.clustering.MessageSender;
  10. import org.apache.axis2.client.Options;
  11. import org.apache.axis2.client.ServiceClient;

  12. public class Client {
  13.   //指定打包的Service在容器中的物理位置
  14.   ∵ static EndpointReference targetEPR =
  15.         new EndpointReference("http://localhost:8080/axis2/services/StockQuoteService");
  16.   /**
  17.    * 准备访问getPrice方法时需要传递的xml节点
  18.    * <getPrice>
  19.    *   <symbol>
  20.    *     value
  21.    *  </symbol>
  22.    * </getPrice>
  23.    * @param symbol
  24.    * @return
  25.    */
  26.     public static OMElement getPricePayload(String symbol) {
  27.         OMFactory fac = OMAbstractFactory.getOMFactory();
  28.         OMNamespace omNs = fac.createOMNamespace("http://axiom.service.quickstart.samples/xsd", "tns");

  29.         OMElement method = fac.createOMElement("getPrice", omNs);
  30.         OMElement value = fac.createOMElement("symbol", omNs);
  31.         value.addChild(fac.createOMText(value, symbol));
  32.         method.addChild(value);
  33.         return method;
  34.     }
  35.     /**
  36.    * 准备访问update方法时需要传递的xml节点
  37.    * <update>
  38.    *   <symbol>
  39.    *     value
  40.    *  </symbol>
  41.    *  <price>
  42.    *    price value
  43.    *  </price>
  44.    * </update>
  45.    * @param symbol
  46.    * @return
  47.    */
  48.     public static OMElement updatePayload(String symbol, double price) {
  49.         OMFactory fac = OMAbstractFactory.getOMFactory();
  50.         OMNamespace omNs = fac.createOMNamespace("http://axiom.service.quickstart.samples/xsd", "tns");

  51.         OMElement method = fac.createOMElement("update", omNs);

  52.         OMElement value1 = fac.createOMElement("symbol", omNs);
  53.         value1.addChild(fac.createOMText(value1, symbol));
  54.         method.addChild(value1);

  55.         OMElement value2 = fac.createOMElement("price", omNs);
  56.         value2.addChild(fac.createOMText(value2, Double.toString(price)));
  57.         method.addChild(value2);
  58.         return method;
  59.     }
  60.     public static void main(String[] args) {
  61.         try {
  62.           //获或得先从服务上查找WSO的值的节点
  63.             OMElement getPricePayload = getPricePayload("WSO");
  64.             //获得修改WSO的值的节点
  65.             OMElement updatePayload = updatePayload("WSO", 123.42);
  66.             
  67.             //准备options,设置要访问的web服务在什么地方
  68.             Options options = new Options();
  69.             options.setTo(targetEPR);
  70.             options.setTransportInProtocol(Constants.TRANSPORT_HTTP);

  71.             ServiceClient sender = new ServiceClient();
  72.             sender.setOptions(options);
  73.             
  74.             //直接调用In-Only的服务
  75.             sender.fireAndForget(updatePayload);
  76.             
  77.             System.err.println("price updated");
  78.             //直接调用In-Out的服务
  79.             OMElement result = sender.sendReceive(getPricePayload);
  80.             //获取到的返回值也是xml
  81.             String response = result.getFirstElement().getText();
  82.             System.err.println("Current price of WSO: " + response);

  83.         } catch (Exception e) {
  84.             e.printStackTrace();
  85.         }
  86.     }
  87. }
复制代码
【——还有……】
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-20 10:05:07 | 显示全部楼层

      Axis2的客户端调用
         Web services提供的服务多种多样,有的可以马上获得结果,有的要消耗很长的时间。所以,如果我们需要多种调用方式来对付不同的情况。
         大多数的Web services都提供阻塞(Blocking)和非阻塞(Non-Blocking)两种API。
             Blocking API - 调用端要等被调用的函数运行完毕才继续往下走。
             Non-Bloking API - 调用端运行完调用函数以后就直接往下走了,调用端和被调用端是异步执行的。返回值是用回调函数来实现的。
         这种异步叫做API层异步(API Level Asynchrony)。他们只用到一个连接来发送和接收消息,而且,如果是那种需要运行很长时间的函数,还会碰到Time Out 错误,如果用两个连接分别处理发送和接收消息,调用的时间就可以缩短,也可以解决Time Out 问题。用两个连接来分别处理发送和接收消息,叫做传输层异步(Transport Level Asynchrony)。
         将前面的 2 种异步结合起来,就有了四种不同的调用模式
      服务的调用代码:
blocking invocation

  1. try {
  2.    OMElement payload = ClientUtil.getEchoOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR); // this sets the location of MyService service
  5.    ServiceClient serviceClient = new ServiceClient();
  6.    serviceClient.setOptions(options);
  7.    OMElement result = sender.sendReceive(payload);
  8.    System.out.println(result);
  9. } catch (AxisFault axisFault) {
  10.    axisFault.printStackTrace();
  11. }
复制代码
IN-ONLY

  1. try {
  2.    OMElement payload = ClientUtil.getPingOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR);
  5.    ServiceClient serviceClient = new ServiceClient();
  6.    serviceClient.setOptions(options);
  7.    serviceClient.fireAndForget(payload);
  8. } catch (AxisFault axisFault) {
  9.    axisFault.printStackTrace();
  10. }
复制代码
EchoBlockingClient
    将第一段代码的调用代码改为 serviceClient.sendReceiveNonblocking(payload, callback); 具体的例子在 "Axis2Home/samples/userguide/src/userguide/clients" 中
Axis 提供三个方法来接收 callback 对象
public abstract void onComplete(AsyncResult result);
public abstract void onError(Exception e);
public boolean isComplete() {}
其中,前面两个是需要用户来实现的

  1. try {
  2. OMElement payload = ClientUtil.getEchoOMElement();
  3.     Options options = new Options();
  4.     options.setTo(targetEPR);
  5.     options.setAction("urn:echo");
  6.     //Callback to handle the response
  7.     Callback callback = new Callback() {
  8.       public void onComplete(AsyncResult result) {
  9.         System.out.println(result.getResponseEnvelope());
  10.       }
  11.       public void onError(Exception e) {
  12.         e.printStackTrace();
  13.       }
  14.     };
  15.     //Non-Blocking Invocation
  16.     sender = new ServiceClient();
  17.     sender.setOptions(options);
  18.     sender.sendReceiveNonBlocking(payload, callback);

  19.     //Wait till the callback receives the response.
  20.     while (!callback.isComplete()) {
  21.        Thread.sleep(1000);
  22.     }

  23. } catch (AxisFault axisFault) {
  24.   axisFault.printStackTrace();
  25. } catch (Exception ex) {
  26.   ex.printStackTrace();
  27. } finally {
  28.    try {
  29.      sender.cleanup();
  30.    } catch (AxisFault axisFault) {
  31.                 //
  32.    }
  33. }
复制代码
EchoNonBlockingDualClient

  1. try {
  2.    OMElement payload = ClientUtil.getEchoOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR);
  5.    options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
  6.    options.setUseSeparateListener(true);
  7.    options.setAction("urn:echo"); // this is the action mapping we put within the service.xml

  8.    //Callback to handle the response
  9.    Callback callback = new Callback() {
  10.       public void onComplete(AsyncResult result) {
  11.          System.out.println(result.getResponseEnvelope());
  12.       }
  13.      public void onError(Exception e) {
  14.        e.printStackTrace();
  15.      }
  16.    };
  17.    //Non-Blocking Invocation
  18.    sender = new ServiceClient();
  19.    sender.engageModule(new QName(Constants.MODULE_ADDRESSING));
  20.    sender.setOptions(options);
  21.    sender.sendReceiveNonBlocking(payload, callback);
  22.    //Wait till the callback receives the response.
  23.    while (!callback.isComplete()) {
  24.       Thread.sleep(1000);
  25.    }
  26.    //Need to close the Client Side Listener.
  27. } catch (AxisFault axisFault) {
  28.    axisFault.printStackTrace();
  29. } catch (Exception ex) {
  30.    ex.printStackTrace();
  31. } finally {
  32.    try {
  33.       sender.finalizeInvoke();
  34.    } catch (AxisFault axisFault) {
  35.    //have to ignore this
  36.    }
  37. }
复制代码
在 Server 端添加 Addressing 支持的方式是,在 Addressing Module 中,将 Handlers 的描述放在 ”pre-dispatch” 语句中,那么它的加载则需要通过在 "/webapps/axis2/WEB-INF" 文件夹下的 axis2.xml 中增加一句话来完成: <module ref="addressing"/>
    客户端支持 Addressing 的方式,一种是将 addressing-<version>.mar 放在 classpath 中,另一种就是根据给定的库位置创建一个 ConfigurationContext
    具体的做法是在 sender = new ServiceClient(); 之前加上
ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(< Axis2RepositoryLocation >, null);
    然后将 "sender = new ServiceClient();" 改为 "sender = new ServiceClient(configContext, null);"
  (五):HelloWorld二改进版(ADB)
       1:要想使用Axis2 Databinding Framework (ADB),首先需要根据WSDL来生成在服务端的skeleton文件。进入cmd,设置路径到工程的根下面,运行如下语句:
WSDL2Java -uri classes\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.adb -d adb -s -ss -sd -ssi -o build\service
          运行完成后,会生成一个build的文件夹,里面有很多生成的东西。
          其中:-d:表示是adb;  
                -s:表示是同步调用;
                -ss:表示创建服务端的代码(包括skeleton和相关文件);
                -sd:表示创建services.xml;
                -ssi:表示为skeleton创建接口;
       2:然后就需要开发人员去实现skeleton的接口了,实现类的架子已经生成了,只要去实现就好了,当然,需要将build\service\src的文件夹添加到Eclipse中工程的源代码来源中。实现类如下:

  1. package samples.quickstart.service.adb;
  2. import java.util.HashMap;
  3. import samples.quickstart.service.pojo.*;
  4. public class StockQuoteServiceSkeleton implements
  5.     StockQuoteServiceSkeletonInterface {
  6.   ∵ static HashMap map = new HashMap();
  7.   public void update(Update param0) {
  8.     map.put(param0.getSymbol(), new Double(param0.getPrice()));
  9.   }
  10.   public GetPriceResponse getPrice(GetPrice param1) {
  11.     Double price = (Double) map.get(param1.getSymbol());
  12.     double ret = 42;
  13.     if (price != null) {
  14.       ret = price.doubleValue();
  15.     }
  16.     GetPriceResponse res = new GetPriceResponse();
  17.     res.set_return(ret);
  18.     return res;
  19.   }
  20. }
复制代码
3:客户端的Stub也同样需要生成,进入cmd,设置路径到工程的根下面,运行如下语句:
WSDL2Java -uri classes\META-INF\StockQuoteService.wsdl -p samples.quickstart.clients -d adb -s -o build\client
          运行完成后,会生成一个build的文件夹,里面有client文件夹。
          需要将build\ client\src的文件夹添加到Eclipse中工程的源代码来源中。

       4:同样需要services.xml文件来描述,如下:

  1. <service name="StockQuoteService" scope="application">
  2.     <messageReceivers>
  3.         <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"
  4.                          class="samples.quickstart.service.adb.StockQuoteServiceMessageReceiverInOut"/>
  5.         <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
  6.                          class="samples.quickstart.service.adb.StockQuoteServiceMessageReceiverInOnly"/>
  7.     </messageReceivers>
  8.     <parameter name="ServiceClass">samples.quickstart.service.adb.StockQuoteServiceSkeleton
  9.     </parameter>
  10.     <operation name="update" mep="http://www.w3.org/2004/08/wsdl/in-only">
  11.         <actionMapping>urn:update</actionMapping>
  12.     </operation>
  13.     <operation name="getPrice" mep="http://www.w3.org/2004/08/wsdl/in-out">
  14.         <actionMapping>urn:getPrice</actionMapping>
  15.         <outputActionMapping>http://quickstart.samples/StockQuoteServicePortType/getPriceResponse</outputActionMapping>
  16.     </operation>
  17. </service>[code]
  18.        5:然后写客户端来调用服务,客户端如下:
  19. [code]
  20. package samples.quickstart.service.adb;

  21. import samples.quickstart.clients.StockQuoteServiceStub;

  22. public class Client {
  23.   public static void main(java.lang.String args[]){
  24.         try{
  25.             StockQuoteServiceStub stub =
  26.                 new StockQuoteServiceStub
  27.                 ("http://localhost:8080/axis2/services/StockQuoteService");

  28.             getPrice(stub);
  29.             update(stub);
  30.             getPrice(stub);

  31.         } catch(Exception e){
  32.             e.printStackTrace();
  33.             System.err.println("\n\n\n");
  34.         }
  35.     }

  36.     /* fire and forget */
  37.     public static void update(StockQuoteServiceStub stub){
  38.         try{
  39.             StockQuoteServiceStub.Update req = new StockQuoteServiceStub.Update();
  40.             req.setSymbol ("ABC");
  41.             req.setPrice (42.35);

  42.             stub.update(req);
  43.             System.err.println("price updated");
  44.         } catch(Exception e){
  45.             e.printStackTrace();
  46.             System.err.println("\n\n\n");
  47.         }
  48.     }

  49.     /* two way call/receive */
  50.     public static void getPrice(StockQuoteServiceStub stub){
  51.         try{
  52.             StockQuoteServiceStub.GetPrice req = new StockQuoteServiceStub.GetPrice();

  53.             req.setSymbol("ABC");

  54.             StockQuoteServiceStub.GetPriceResponse res =
  55.                 stub.getPrice(req);

  56.             System.err.println(res.get_return());
  57.         } catch(Exception e){
  58.             e.printStackTrace();
  59.             System.err.println("\n\n\n");
  60.         }
  61.     }
  62. }
复制代码
6:跟ADB的方式类似的还有:XMLBeans、JiBX进行服务邦定的方式,都是通过WSDL2Java来生成服务端的Skeleton和客户端的Stub,还有相应的接口和实现的架子,具体的服务和客户端的调用还是需要开发人员来写的。

【后面还有……】
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-20 10:07:09 | 显示全部楼层
      Axis2的客户端调用
         Web services提供的服务多种多样,有的可以马上获得结果,有的要消耗很长的时间。所以,如果我们需要多种调用方式来对付不同的情况。
         大多数的Web services都提供阻塞(Blocking)和非阻塞(Non-Blocking)两种API。
             Blocking API - 调用端要等被调用的函数运行完毕才继续往下走。
             Non-Bloking API - 调用端运行完调用函数以后就直接往下走了,调用端和被调用端是异步执行的。返回值是用回调函数来实现的。
         这种异步叫做API层异步(API Level Asynchrony)。他们只用到一个连接来发送和接收消息,而且,如果是那种需要运行很长时间的函数,还会碰到Time Out 错误,如果用两个连接分别处理发送和接收消息,调用的时间就可以缩短,也可以解决Time Out 问题。用两个连接来分别处理发送和接收消息,叫做传输层异步(Transport Level Asynchrony)。
         将前面的 2 种异步结合起来,就有了四种不同的调用模式
      服务的调用代码:
blocking invocation

  1. try {
  2.    OMElement payload = ClientUtil.getEchoOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR); // this sets the location of MyService service
  5.    ServiceClient serviceClient = new ServiceClient();
  6.    serviceClient.setOptions(options);
  7.    OMElement result = sender.sendReceive(payload);
  8.    System.out.println(result);
  9. } catch (AxisFault axisFault) {
  10.    axisFault.printStackTrace();
  11. }
复制代码
IN-ONLY

  1. try {
  2.    OMElement payload = ClientUtil.getPingOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR);
  5.    ServiceClient serviceClient = new ServiceClient();
  6.    serviceClient.setOptions(options);
  7.    serviceClient.fireAndForget(payload);
  8. } catch (AxisFault axisFault) {
  9.    axisFault.printStackTrace();
  10. }
复制代码
EchoBlockingClient
    将第一段代码的调用代码改为 serviceClient.sendReceiveNonblocking(payload, callback); 具体的例子在 "Axis2Home/samples/userguide/src/userguide/clients" 中
Axis 提供三个方法来接收 callback 对象
public abstract void onComplete(AsyncResult result);
public abstract void onError(Exception e);
public boolean isComplete() {}
其中,前面两个是需要用户来实现的

  1. try {
  2. OMElement payload = ClientUtil.getEchoOMElement();
  3.     Options options = new Options();
  4.     options.setTo(targetEPR);
  5.     options.setAction("urn:echo");
  6.     //Callback to handle the response
  7.     Callback callback = new Callback() {
  8.       public void onComplete(AsyncResult result) {
  9.         System.out.println(result.getResponseEnvelope());
  10.       }
  11.       public void onError(Exception e) {
  12.         e.printStackTrace();
  13.       }
  14.     };
  15.     //Non-Blocking Invocation
  16.     sender = new ServiceClient();
  17.     sender.setOptions(options);
  18.     sender.sendReceiveNonBlocking(payload, callback);
  19.     //Wait till the callback receives the response.
  20.     while (!callback.isComplete()) {
  21.        Thread.sleep(1000);
  22.     }
  23. } catch (AxisFault axisFault) {
  24.   axisFault.printStackTrace();
  25. } catch (Exception ex) {
  26.   ex.printStackTrace();
  27. } finally {
  28.    try {
  29.      sender.cleanup();
  30.    } catch (AxisFault axisFault) {
  31.                 //
  32.    }
  33. }
复制代码
EchoNonBlockingDualClient

  1. try {
  2.    OMElement payload = ClientUtil.getEchoOMElement();
  3.    Options options = new Options();
  4.    options.setTo(targetEPR);
  5.    options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
  6.    options.setUseSeparateListener(true);
  7.    options.setAction("urn:echo"); // this is the action mapping we put within the service.xml
  8.    //Callback to handle the response
  9.    Callback callback = new Callback() {
  10.       public void onComplete(AsyncResult result) {
  11.          System.out.println(result.getResponseEnvelope());
  12.       }
  13.      public void onError(Exception e) {
  14.        e.printStackTrace();
  15.      }
  16.    };
  17.    //Non-Blocking Invocation
  18.    sender = new ServiceClient();
  19.    sender.engageModule(new QName(Constants.MODULE_ADDRESSING));
  20.    sender.setOptions(options);
  21.    sender.sendReceiveNonBlocking(payload, callback);
  22.    //Wait till the callback receives the response.
  23.    while (!callback.isComplete()) {
  24.       Thread.sleep(1000);
  25.    }
  26.    //Need to close the Client Side Listener.
  27. } catch (AxisFault axisFault) {
  28.    axisFault.printStackTrace();
  29. } catch (Exception ex) {
  30.    ex.printStackTrace();
  31. } finally {
  32.    try {
  33.       sender.finalizeInvoke();
  34.    } catch (AxisFault axisFault) {
  35.    //have to ignore this
  36.    }
  37. }
复制代码
在 Server 端添加 Addressing 支持的方式是,在 Addressing Module 中,将 Handlers 的描述放在 ”pre-dispatch” 语句中,那么它的加载则需要通过在 "/webapps/axis2/WEB-INF" 文件夹下的 axis2.xml 中增加一句话来完成: <module ref="addressing"/>
    客户端支持 Addressing 的方式,一种是将 addressing-<version>.mar 放在 classpath 中,另一种就是根据给定的库位置创建一个 ConfigurationContext
    具体的做法是在 sender = new ServiceClient(); 之前加上
ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(< Axis2RepositoryLocation >, null);
    然后将 "sender = new ServiceClient();" 改为 "sender = new ServiceClient(configContext, null);"
  (五):HelloWorld二改进版(ADB)
       1:要想使用Axis2 Databinding Framework (ADB),首先需要根据WSDL来生成在服务端的skeleton文件。进入cmd,设置路径到工程的根下面,运行如下语句:
WSDL2Java -uri classes\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.adb -d adb -s -ss -sd -ssi -o build\service
          运行完成后,会生成一个build的文件夹,里面有很多生成的东西。
          其中:-d:表示是adb;  
                -s:表示是同步调用;
                -ss:表示创建服务端的代码(包括skeleton和相关文件);
                -sd:表示创建services.xml;
                -ssi:表示为skeleton创建接口;
       2:然后就需要开发人员去实现skeleton的接口了,实现类的架子已经生成了,只要去实现就好了,当然,需要将build\service\src的文件夹添加到Eclipse中工程的源代码来源中。实现类如下:

  1. package samples.quickstart.service.adb;
  2. import java.util.HashMap;
  3. import samples.quickstart.service.pojo.*;
  4. public class StockQuoteServiceSkeleton implements
  5.     StockQuoteServiceSkeletonInterface {
  6.   ∵ static HashMap map = new HashMap();
  7.   public void update(Update param0) {
  8.     map.put(param0.getSymbol(), new Double(param0.getPrice()));
  9.   }
  10.   public GetPriceResponse getPrice(GetPrice param1) {
  11.     Double price = (Double) map.get(param1.getSymbol());
  12.     double ret = 42;
  13.     if (price != null) {
  14.       ret = price.doubleValue();
  15.     }
  16.     GetPriceResponse res = new GetPriceResponse();
  17.     res.set_return(ret);
  18.     return res;
  19.   }
  20. }
复制代码
3:客户端的Stub也同样需要生成,进入cmd,设置路径到工程的根下面,运行如下语句:
WSDL2Java -uri classes\META-INF\StockQuoteService.wsdl -p samples.quickstart.clients -d adb -s -o build\client
          运行完成后,会生成一个build的文件夹,里面有client文件夹。
          需要将build\ client\src的文件夹添加到Eclipse中工程的源代码来源中。
       4:同样需要services.xml文件来描述,如下:

  1. <service name="StockQuoteService" scope="application">
  2.     <messageReceivers>
  3.         <messageReceiver mep="ht tp://w ww.w3.org/2004/08/wsdl/in-out"
  4.                          class="samples.quickstart.service.adb.StockQuoteServiceMessageReceiverInOut"/>
  5.         <messageReceiver mep="htt p://w ww.w3.org/2004/08/wsdl/in-only"
  6.                          class="samples.quickstart.service.adb.StockQuoteServiceMessageReceiverInOnly"/>
  7.     </messageReceivers>
  8.     <parameter name="ServiceClass">samples.quickstart.service.adb.StockQuoteServiceSkeleton
  9.     </parameter>
  10.     <operation name="update" mep="ht tp://ww w.w3.org/2004/08/wsdl/in-only">
  11.         <actionMapping>urn:update</actionMapping>
  12.     </operation>
  13.     <operation name="getPrice" mep="ht tp://ww w.w3.org/2004/08/wsdl/in-out">
  14.         <actionMapping>urn:getPrice</actionMapping>
  15.         <outputActionMapping>ht tp://quickstart.samples/StockQuoteServicePortType/getPriceResponse</outputActionMapping>
  16.     </operation>
  17. </service>[code]
  18.        5:然后写客户端来调用服务,客户端如下:
  19. [code]
  20. package samples.quickstart.service.adb;
  21. import samples.quickstart.clients.StockQuoteServiceStub;
  22. public class Client {
  23.   public static void main(java.lang.String args[]){
  24.         try{
  25.             StockQuoteServiceStub stub =
  26.                 new StockQuoteServiceStub
  27.                 ("ht tp://localhost:8080/axis2/services/StockQuoteService");
  28.             getPrice(stub);
  29.             update(stub);
  30.             getPrice(stub);
  31.         } catch(Exception e){
  32.             e.printStackTrace();
  33.             System.err.println("\n\n\n");
  34.         }
  35.     }
  36.     /* fire and forget */
  37.     public static void update(StockQuoteServiceStub stub){
  38.         try{
  39.             StockQuoteServiceStub.Update req = new StockQuoteServiceStub.Update();
  40.             req.setSymbol ("ABC");
  41.             req.setPrice (42.35);
  42.             stub.update(req);
  43.             System.err.println("price updated");
  44.         } catch(Exception e){
  45.             e.printStackTrace();
  46.             System.err.println("\n\n\n");
  47.         }
  48.     }
  49.     /* two way call/receive */
  50.     public static void getPrice(StockQuoteServiceStub stub){
  51.         try{
  52.             StockQuoteServiceStub.GetPrice req = new StockQuoteServiceStub.GetPrice();
  53.             req.setSymbol("ABC");
  54.             StockQuoteServiceStub.GetPriceResponse res =
  55.                 stub.getPrice(req);
  56.             System.err.println(res.get_return());
  57.         } catch(Exception e){
  58.             e.printStackTrace();
  59.             System.err.println("\n\n\n");
  60.         }
  61.     }
  62. }
复制代码
6:跟ADB的方式类似的还有:XMLBeans、JiBX进行服务邦定的方式,都是通过WSDL2Java来生成服务端的Skeleton和客户端的Stub,还有相应的接口和实现的架子,具体的服务和客户端的调用还是需要开发人员来写的。

【后面还有……】
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-20 10:08:30 | 显示全部楼层
  五:认识Axis2
      Axis2是什么?
      Apache Axis2 是Axis的后续版本,是新一代的SOAP引擎。Axis2是通过用Java语言开发Web Service的工具,Axis2封装了SOAP消息的处理,同时还有做了其他的大量的工作来简化Web Sercice的开发者的工作。
      Axis2能做什么?
      Axis2的主要特点有:
       (1)提供了一个处理SOAP消息的框架,这个框架是极易扩展的,用户可以在每个服务或操作上扩展它。用户也可以在这个框架的基础上对不同的消息交换模型(Message Exchange Patterns)MEPs进行建模
       (2)采用名为 AXIOM(AXIs Object Model)的新核心 XML 处理模型,利用新的XML解析器提供的灵活性按需构造对象模型。
       (3)支持不同的消息交换模式。目前Axis2支持三种模式:In-Only、Robust-In和In-Out。In-Only消息交换模式只有SOAP请求,而不需要应答;Robust-In消息交换模式发送SOAP请求,只有在出错的情况下才返回应答;In-Out消息交换模式总是存在SOAP请求和应答。
       (4)提供阻塞和非阻塞客户端 API。
       (5)支持内置的 Web服务寻址 (WS-Addressing)
       (6)灵活的数据绑定,可选择直接使用 AXIOM,ADB,或使用 XMLBeans、JiBX 或 JAXB 2.0 等专用数据绑定框架。
       (7)新的部署模型,支持热部署,可以用或者不用WSDL来部署
       (8)支持HTTP,SMTP,JMS,TCP传输协议。
       (9)支持REST (Representational State Transfer)。
       (10)提供了代码生成器,可以生成服务器端和客户端的代码
     除了上述的这些功能,在内存和速度等性能方面也是Axis2的重点。Axis2的核心框架是构建在WSDL,SOAP和WS-Addressing上,其他的如JAX-RP,SAAJ和WS-Policy是在核心框架之上的层

  六:WSDL
   1:WSDL 的用途
      创建服务时,通常的原因都是因为希望其他人使用此服务。为了使用服务,需要知道向服务发送什么信息、服务将发送回什么信息以及在何处能找到此服务。当然,可以将这些放入字处理文档中,但相比之下,如果此信息采用标准的、最好为人机均可读的格式,则要有用得多。
      WSDL 就提供了这样的标准格式。除了不会造成混淆不清外,其主要优势是,由于 WSDL 是事实标准,且采用 XML 格式,因而可由计算机进行处理,便于自动创建客户机(甚至自动创建服务的框架)。
      注意这里我们讲述的还是wsdl1.0,但是wsdl2.0已经出来了,2007年推出wsdl2.0。
    Wsdl文档结构:
      WSDL 文档是利用这些主要的元素来描述某个 web service 的:
      <portType>: web service 执行的操作
      <message>: web service 使用的消息
      <types> :web service 使用的数据类型
      <binding> :web service 使用的通信协议
     一个 WSDL 文档的主要结构是类似这样的:
      <definitions>
      <types>
         definition of types........
      </types>
      <message>
         definition of a message....
      </message>
      <portType>
         definition of a port.......
      </portType>
      <binding>
         definition of a binding....
      </binding>

    </definitions>WSDL 文档可包含其它的元素,比如 extension 元素,以及一个 service 元素,此元素可把若干个 web services 的定义组合在一个单一的 WSDL 文档中。
         1:<portType> 元素是最重要的 WSDL 元素。它可描述一个 web service、可被执行的操作,以及相关的消息。可以把 <portType> 元素比作传统编程语言中的一个函数库(或一个模块、或一个类)。
         2:<message> 元素定义一个操作的数据元素。每个消息均由一个或多个部件组成。可以把这些部件比作传统编程语言中一个函数调用的参数。
         3:<types> 元素定义 web service 使用的数据类型。为了最大程度的平台中立性,WSDL 使用 XML Schema 语法来定义数据类型。
         4:<binding> 元素为每个端口定义消息格式和协议细节
     WSDL的PortType:
     操作类型:WSDL中定义了四种类型:
         One-way :此操作可接受消息,但不会返回响应。
         Request-response: 此操走可接受一个请求并会返回一个响应
         Solicit-response :此操作可发送一个请求,并会等待一个响应。
         Notification :此操作可发送一条消息,但不会等待响应。
      1:一个 one-way 操作的例子:

  1. <message name="newTermValues">
  2.    <part name="term" type="xs:string"/>
  3.    <part name="value" type="xs:string"/>
  4. </message>
  5. <portType name="glossaryTerms">
  6.    <operation name="setTerm">
  7.       <input name="newTerm" message="newTermValues"/>
  8.    </operation>
  9. </portType >
复制代码
2:一个 request-response 操作的例子:

  1. <message name="getTermRequest">
  2.    <part name="term" type="xs:string"/>
  3. </message>
  4. <message name="getTermResponse">
  5.    <part name="value" type="xs:string"/>
  6. </message>
  7. <portType name="glossaryTerms">
  8.   <operation name="getTerm">
  9.     <input message="getTermRequest"/>
  10.     <output message="getTermResponse"/>
  11.   </operation>
  12. </portType>
复制代码
WSDL的绑定:
         绑定到 SOAP
         一个请求 - 响应操作的例子:

  1. <message name="getTermRequest">
  2.    <part name="term" type="xs:string" />
  3. </message>
  4. <message name="getTermResponse">
  5.    <part name="value" type="xs:string" />
  6. </message>
  7. <portType name="glossaryTerms">
  8.   <operation name="getTerm">
  9.       <input message="getTermRequest" />
  10.       <output message="getTermResponse" />
  11.   </operation>
  12. </portType>
  13. <binding type="glossaryTerms" name="b1">
  14. <soap:binding style="document"
  15. transport="ht tp://schemas.xmlsoap.org/soap/http" />
  16.   <operation>
  17.     <soap:operation
  18.      soapAction="ht tp://example.com/getTerm" />
  19.     <input>
  20.       <soap:body use="literal" />
  21.     </input>
  22.     <output>
  23.       <soap:body use="literal" />
  24.     </output>
  25.   </operation>
  26. </binding>
复制代码
binding 元素有两个属性 - name 属性和 type 属性。
name 属性定义 binding 的名称,而 type 属性指向用于 binding 的端口,在这个例子中是 "glossaryTerms" 端口。
soap:binding 元素有两个属性 - style 属性和 transport 属性。
style 属性可取值 "rpc" 或 "document"。在这个例子中我们使用 document。transport 属性定义了要使用的 SOAP 协议。在这个例子中我们使用 HTTP。
operation 元素定义了每个端口提供的操作符。
对于每个操作,相应的 SOAP 行为都需要被定义。同时您必须如何对输入和输出进行编码。在这个例子中我们使用了 "literal"。
回复

使用道具 举报

 楼主| solimh 发表于 2011-5-20 10:13:07 | 显示全部楼层
例子:
下面是前面的HelloWorld生成的wsdl文件:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <wsdl:definitions xmlns:wsdl="ht tp://schemas.xmlsoap.org/wsdl/" xmlns:ns1="ht tp://org.apache.axis2/xsd" xmlns:ns="ht tp://pojo.service.quickstart.samples" xmlns:wsaw="ht tp://w ww.w3.org/2006/05/addressing/wsdl" xmlns:http="ht tp://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="ht tp://ww w.w3.org/2001/XMLSchema" xmlns:mime="ht tp://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="ht tp://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="ht tp://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="ht tp://pojo.service.quickstart.samples">
  3.     <wsdl:types>
  4.         <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="ht tp://pojo.service.quickstart.samples">
  5.             <xs:element name="getPrice">
  6.                 <xs:complexType>
  7.                     <xs:sequence>
  8.                         <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
  9.                     </xs:sequence>
  10.                 </xs:complexType>
  11.             </xs:element>
  12.             <xs:element name="getPriceResponse">
  13.                 <xs:complexType>
  14.                     <xs:sequence>
  15.                         <xs:element minOccurs="0" name="return" type="xs:double"/>
  16.                     </xs:sequence>
  17.                 </xs:complexType>
  18.             </xs:element>
  19.             <xs:element name="update">
  20.                 <xs:complexType>
  21.                     <xs:sequence>
  22.                         <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
  23.                         <xs:element minOccurs="0" name="price" type="xs:double"/>
  24.                     </xs:sequence>
  25.                 </xs:complexType>
  26.             </xs:element>
  27.         </xs:schema>
  28.     </wsdl:types>
  29.     <wsdl:message name="getPriceRequest">
  30.         <wsdl:part name="parameters" element="ns:getPrice"/>
  31.     </wsdl:message>
  32.     <wsdl:message name="getPriceResponse">
  33.         <wsdl:part name="parameters" element="ns:getPriceResponse"/>
  34.     </wsdl:message>
  35.     <wsdl:message name="updateRequest">
  36.         <wsdl:part name="parameters" element="ns:update"/>
  37.     </wsdl:message>
  38.     <wsdl:portType name="StockQuoteServicePortType">
  39.         <wsdl:operation name="getPrice">
  40.             <wsdl:input message="ns:getPriceRequest" wsaw:Action="urn:getPrice"/>
  41.             <wsdl:output message="ns:getPriceResponse" wsaw:Action="urn:getPriceResponse"/>
  42.         </wsdl:operation>
  43.         <wsdl:operation name="update">
  44.             <wsdl:input message="ns:updateRequest" wsaw:Action="urn:update"/>
  45.         </wsdl:operation>
  46.     </wsdl:portType>
  47.     <wsdl:binding name="StockQuoteServiceSoap11Binding" type="ns:StockQuoteServicePortType">
  48.         <soap:binding transport="ht tp://schemas.xmlsoap.org/soap/http" style="document"/>
  49.         <wsdl:operation name="getPrice">
  50.             <soap:operation soapAction="urn:getPrice" style="document"/>
  51.             <wsdl:input>
  52.                 <soap:body use="literal"/>
  53.             </wsdl:input>
  54.             <wsdl:output>
  55.                 <soap:body use="literal"/>
  56.             </wsdl:output>
  57.         </wsdl:operation>
  58.         <wsdl:operation name="update">
  59.             <soap:operation soapAction="urn:update" style="document"/>
  60.             <wsdl:input>
  61.                 <soap:body use="literal"/>
  62.             </wsdl:input>
  63.         </wsdl:operation>
  64.     </wsdl:binding>
  65.     <wsdl:binding name="StockQuoteServiceSoap12Binding" type="ns:StockQuoteServicePortType">
  66.         <soap12:binding transport="ht tp://schemas.xmlsoap.org/soap/http" style="document"/>
  67.         <wsdl:operation name="getPrice">
  68.             <soap12:operation soapAction="urn:getPrice" style="document"/>
  69.             <wsdl:input>
  70.                 <soap12:body use="literal"/>
  71.             </wsdl:input>
  72.             <wsdl:output>
  73.                 <soap12:body use="literal"/>
  74.             </wsdl:output>
  75.         </wsdl:operation>
  76.         <wsdl:operation name="update">
  77.             <soap12:operation soapAction="urn:update" style="document"/>
  78.             <wsdl:input>
  79.                 <soap12:body use="literal"/>
  80.             </wsdl:input>
  81.         </wsdl:operation>
  82.     </wsdl:binding>
  83.     <wsdl:binding name="StockQuoteServiceHttpBinding" type="ns:StockQuoteServicePortType">
  84.         <http:binding verb="POST"/>
  85.         <wsdl:operation name="getPrice">
  86.             <http:operation location="StockQuoteService/getPrice"/>
  87.             <wsdl:input>
  88.                 <mime:content type="text/xml" part="getPrice"/>
  89.             </wsdl:input>
  90.             <wsdl:output>
  91.                 <mime:content type="text/xml" part="getPrice"/>
  92.             </wsdl:output>
  93.         </wsdl:operation>
  94.         <wsdl:operation name="update">
  95.             <http:operation location="StockQuoteService/update"/>
  96.             <wsdl:input>
  97.                 <mime:content type="text/xml" part="update"/>
  98.             </wsdl:input>
  99.         </wsdl:operation>
  100.     </wsdl:binding>
  101.     <wsdl:service name="StockQuoteService">
  102.         <wsdl:port name="StockQuoteServiceHttpSoap11Endpoint" binding="ns:StockQuoteServiceSoap11Binding">
  103.             <soap:address location="ht tp://localhost:8080/axis2/services/StockQuoteService"/>
  104.         </wsdl:port>
  105.         <wsdl:port name="StockQuoteServiceHttpSoap12Endpoint" binding="ns:StockQuoteServiceSoap12Binding">
  106.             <soap12:address location="ht tp://localhost:8080/axis2/services/StockQuoteService"/>
  107.         </wsdl:port>
  108.         <wsdl:port name="StockQuoteServiceHttpEndpoint" binding="ns:StockQuoteServiceHttpBinding">
  109.             <http:address location="ht tp://localhost:8080/axis2/services/StockQuoteService"/>
  110.         </wsdl:port>
  111.     </wsdl:service>
  112. </wsdl:definitions>
复制代码
【还有一篇……】
回复

使用道具 举报

拉莫斯 发表于 2011-5-22 22:49:08 | 显示全部楼层
写这么些,而且发小视频。。。都是为了去你们那 报名,。。。技术一直是落后的,java   jsp已死。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

快速回复 返回顶部 返回列表