用Tuscany、Axis、groovy来发布和调试Web Service

2024-04-21 14:38

本文主要是介绍用Tuscany、Axis、groovy来发布和调试Web Service,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Tuscany是一个符合SCA标准的开源实现,他能够很容易地将一个服务绑定为一个Web Service:
<composite name="Employee" xmlns="http://www.osoa.org/xmlns/sca/1.0"><service name="HelloWorldService"><interface.wsdl><component name="HelloWorldServiceComponent"><implementation.java class="helloworld.HelloWorldImpl">
xml 代码
  1. <composite xmlns="http://www.osoa.org/xmlns/sca/1.0" name="Employee">  
  2.     <service name="HelloWorldService"  
  3.         promote="HelloWorldServiceComponent">  
  4.         <interface.wsdl  
  5.             interface="http://helloworld#wsdl.interface(HelloWorld)" />  
  6.         <binding.ws uri="http://localhost:8085/HelloWorldService" />  
  7.     </service>  
  8.     <component name="HelloWorldServiceComponent">  
  9.         <implementation.java class="helloworld.HelloWorldImpl" />  
  10.     </component>  
  11. </composite>  
</component>
要使服务发布成功,要保证有以下几个文件:
</interface.wsdl></service></composite>
  1. 一个预定义的wsdl文件,只要保证这个文件在classpath下就可以了。
  2. 一个java接口。
  3. 一个java类。
下面列依次列出这几个文件:
* helloworld.wsdl
<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://helloworld" targetnamespace="http://helloworld">
xml 代码
  1. <wsdl:definitions targetNamespace="http://helloworld" xmlns:tns="http://helloworld" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"  
  2.     name="helloworld">  
  3.     <wsdl:types>  
  4.         <schema elementFormDefault="qualified" targetNamespace="http://helloworld" xmlns="http://www.w3.org/2001/XMLSchema">  
  5.             <element name="getGreetings">  
  6.                 <complexType>  
  7.                     <sequence>  
  8.                         <element name="name" type="xsd:string"/>  
  9.                     </sequence>  
  10.                 </complexType>  
  11.             </element>  
  12.   
  13.             <element name="getGreetingsResponse">  
  14.                 <complexType>  
  15.                     <sequence>  
  16.                         <element name="getGreetingsReturn" type="xsd:string"/>  
  17.                     </sequence>  
  18.                 </complexType>  
  19.             </element>  
  20.             
  21.         </schema>  
  22.     </wsdl:types>  
  23.     <wsdl:message name="getGreetingsRequest">  
  24.         <wsdl:part element="tns:getGreetings" name="parameters"/>  
  25.     </wsdl:message>  
  26.     <wsdl:message name="getGreetingsResponse">  
  27.         <wsdl:part element="tns:getGreetingsResponse" name="parameters"/>  
  28.     </wsdl:message>  
  29.   
  30.     <wsdl:portType name="HelloWorld">  
  31.         <wsdl:operation name="getGreetings">  
  32.             <wsdl:input message="tns:getGreetingsRequest" name="getGreetingsRequest"/>  
  33.             <wsdl:output message="tns:getGreetingsResponse" name="getGreetingsResponse"/>  
  34.         </wsdl:operation>  
  35.     </wsdl:portType>  
  36.   
  37.     <wsdl:binding name="HelloWorldSoapBinding" type="tns:HelloWorld">  
  38.         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>  
  39.         <wsdl:operation name="getGreetings">  
  40.             <wsdlsoap:operation soapAction=""/>  
  41.             <wsdl:input name="getGreetingsRequest">  
  42.                 <wsdlsoap:body use="literal"/>  
  43.             </wsdl:input>  
  44.             <wsdl:output name="getGreetingsResponse">  
  45.                 <wsdlsoap:body use="literal"/>  
  46.             </wsdl:output>  
  47.         </wsdl:operation>  
  48.     </wsdl:binding>  
  49.   
  50.     <wsdl:service name="HelloWorldService">  
  51.         <wsdl:port binding="tns:HelloWorldSoapBinding" name="HelloWorldSoapPort">  
  52.             <wsdlsoap:address location="http://localhost:8085/HelloWorldService"/>  
  53.         </wsdl:port>  
  54.     </wsdl:service>  
  55.   
  56. </wsdl:definitions>  
<wsdl:types><schema xmlns="http://www.w3.org/2001/XMLSchema" targetnamespace="http://helloworld" elementformdefault="qualified"><wsdl:message name="getGreetingsRequest"><wsdl:message name="getGreetingsResponse"><wsdl:porttype name="HelloWorld"><wsdl:operation name="getGreetings"><wsdl:binding type="tns:HelloWorld" name="HelloWorldSoapBinding"><wsdlsoap:binding transport="http://schemas.xmlsoap.org/soap/http" style=""><wsdl:operation name="getGreetings"><wsdlsoap:operation soapaction="">
* HelloWorldService.java
java 代码
  1. package helloworld;  
  2. import org.osoa.sca.annotations.Remotable;  
  3. @Remotable  
  4. public interface HelloWorldService {  
  5.     public String getGreetings(String name);  
  6. }  


* HelloWorldImpl.java
java 代码
  1. package helloworld;  
  2. import org.osoa.sca.annotations.Service;  
  3. @Service(HelloWorldService.class)  
  4. public class HelloWorldImpl implements HelloWorldService {  
  5.     public String getGreetings(String name) {  
  6.         return "hello "+name;  
  7.     }  
  8. }  


这样我们就可以写一个类来创建一个SCA中的Domain,并由它来创建组件并发布为一个web服务。
java 代码
  1. public class HelloWorldServer {  
  2.     public static void main(String[] args) {  
  3.         SCADomain scaDomain = SCADomain.newInstance("","","Calculator.composite","Employee.composite");  
  4.         try {  
  5.             System.out.println("HelloWorld server started (press enter to shutdown)");  
  6.             System.in.read();  
  7.         } catch (IOException e) {  
  8.             e.printStackTrace();  
  9.         }  
  10.         scaDomain.close();  
  11.         System.out.println("HelloWorld server stopped");  
  12.     }  
  13. }  

运行这个类,也就启动了一个SCA的Domain,打开浏览器输入http://localhost:8085/HelloWorldService? wsdl(注意这个是以binding.ws的uri为准的,和wsdl文件中的wsdlsoap:address的location无关,当然在这里它 们俩个是一致的),就可以看到发布的服务的wsdl描述,应该和前面的helloworld.wsdl的内容一样。

下面我们写一个groovy的客户端来测试一下这个web服务,代码大概象这样(更多的信息可以参考 http://docs.codehaus.org/display/GROOVY/Groovy+SOAP ,要运行下面的代码需要先安装一个groovy的用来除了soap的类库):

java 代码
  1. import groovy.net.soap.SoapClient  
  2. def proxy = new SoapClient("http://localhost:8085/HelloWorldService?wsdl")  
  3. println proxy.getGreetings("yanhua")  


运行它,在控制台可以看到 hello yanhua了吗?

有时候我们想查看一下客户端和服务器之间来往的soap消息,我们可以用AXIS提供的一个叫TCPMonitor的工具。先下载AXIS,解压后在AXIS的目录下运行如下的命令:java -classpath ./lib/axis.jar org.apache.axis.utils.tcpmon,这样会打开TCPMonitor这个工具。我们新建一个Listener,设置如下图:

</wsdlsoap:operation></wsdl:operation></wsdlsoap:binding></wsdl:binding></wsdl:operation></wsdl:porttype></wsdl:message></wsdl:message></schema></wsdl:types></wsdl:definitions>

我们把刚才的wsdl文件在groovy的运行目录下放置一份,并找到<wsdlsoap:address location="http://192.168.0.100:8085/HelloWorldService">把它的端口号改为8081,也就是<wsdlsoap:address location="http://192.168.0.100:8081/HelloWorldService">。再把上面的groovy代码改一下:

java 代码
  1. import groovy.net.soap.SoapClient  
  2. def proxy = new SoapClient("file:/E:/temp/groovy/helloworld.wsdl")  
  3. println proxy.getGreetings("yanhua")  


运行它,在TCPMonitor中就可以看到往返的soap消息了,对这个例子来说分别是:
发送到服务器的soap消息:
xml 代码
  1. POST /HelloWorldService HTTP/1.1  
  2. SOAPAction: ""  
  3. Content-Type: text/xml; charset=UTF-8  
  4. User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)  
  5. Host: 127.0.0.1:8081  
  6. Expect: 100-continue  
  7. Content-Length: 308  
  8.   
  9. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Body><getGreetings xmlns="http://helloworld"><name xmlns="http://helloworld">yanhua</name></getGreetings></soap:Body></soap:Envelope>  
<soap:envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:body><getgreetings xmlns="http://helloworld"><name xmlns="http://helloworld"></getgreetings></soap:body></soap:envelope>

返回给客户端的soap消息:
xml 代码
  1. POST /HelloWorldService HTTP/1.1  
  2. SOAPAction: ""  
  3. Content-Type: text/xml; charset=UTF-8  
  4. User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; XFire Client +http://xfire.codehaus.org)  
  5. Host: 127.0.0.1:8081  
  6. Expect: 100-continue  
  7. Content-Length: 308  
  8.   
  9. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soap:Body><getGreetings xmlns="http://helloworld"><name xmlns="http://helloworld">yanhua</name></getGreetings></soap:Body></soap:Envelope>  
<soap:envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:body><getgreetings xmlns="http://helloworld"><name xmlns="http://helloworld"></getgreetings></soap:body></soap:envelope>

</wsdlsoap:address></wsdlsoap:address>

这篇关于用Tuscany、Axis、groovy来发布和调试Web Service的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/923321

相关文章

Spring常见错误之Web嵌套对象校验失效解决办法

《Spring常见错误之Web嵌套对象校验失效解决办法》:本文主要介绍Spring常见错误之Web嵌套对象校验失效解决的相关资料,通过在Phone对象上添加@Valid注解,问题得以解决,需要的朋... 目录问题复现案例解析问题修正总结  问题复现当开发一个学籍管理系统时,我们会提供了一个 API 接口去

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

C++中实现调试日志输出

《C++中实现调试日志输出》在C++编程中,调试日志对于定位问题和优化代码至关重要,本文将介绍几种常用的调试日志输出方法,并教你如何在日志中添加时间戳,希望对大家有所帮助... 目录1. 使用 #ifdef _DEBUG 宏2. 加入时间戳:精确到毫秒3.Windows 和 MFC 中的调试日志方法MFC

五大特性引领创新! 深度操作系统 deepin 25 Preview预览版发布

《五大特性引领创新!深度操作系统deepin25Preview预览版发布》今日,深度操作系统正式推出deepin25Preview版本,该版本集成了五大核心特性:磐石系统、全新DDE、Tr... 深度操作系统今日发布了 deepin 25 Preview,新版本囊括五大特性:磐石系统、全新 DDE、Tree

Linux Mint Xia 22.1重磅发布: 重要更新一览

《LinuxMintXia22.1重磅发布:重要更新一览》Beta版LinuxMint“Xia”22.1发布,新版本基于Ubuntu24.04,内核版本为Linux6.8,这... linux Mint 22.1「Xia」正式发布啦!这次更新带来了诸多优化和改进,进一步巩固了 Mint 在 Linux 桌面

使用IntelliJ IDEA创建简单的Java Web项目完整步骤

《使用IntelliJIDEA创建简单的JavaWeb项目完整步骤》:本文主要介绍如何使用IntelliJIDEA创建一个简单的JavaWeb项目,实现登录、注册和查看用户列表功能,使用Se... 目录前置准备项目功能实现步骤1. 创建项目2. 配置 Tomcat3. 项目文件结构4. 创建数据库和表5.

多模块的springboot项目发布指定模块的脚本方式

《多模块的springboot项目发布指定模块的脚本方式》该文章主要介绍了如何在多模块的SpringBoot项目中发布指定模块的脚本,作者原先的脚本会清理并编译所有模块,导致发布时间过长,通过简化脚本... 目录多模块的springboot项目发布指定模块的脚本1、不计成本地全部发布2、指定模块发布总结多模

手把手教你idea中创建一个javaweb(webapp)项目详细图文教程

《手把手教你idea中创建一个javaweb(webapp)项目详细图文教程》:本文主要介绍如何使用IntelliJIDEA创建一个Maven项目,并配置Tomcat服务器进行运行,过程包括创建... 1.启动idea2.创建项目模板点击项目-新建项目-选择maven,显示如下页面输入项目名称,选择

高效+灵活,万博智云全球发布AWS无代理跨云容灾方案!

摘要 近日,万博智云推出了基于AWS的无代理跨云容灾解决方案,并与拉丁美洲,中东,亚洲的合作伙伴面向全球开展了联合发布。这一方案以AWS应用环境为基础,将HyperBDR平台的高效、灵活和成本效益优势与无代理功能相结合,为全球企业带来实现了更便捷、经济的数据保护。 一、全球联合发布 9月2日,万博智云CEO Michael Wong在线上平台发布AWS无代理跨云容灾解决方案的阐述视频,介绍了