欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

XFire构建web service客户端的五种方式

程序员文章站 2024-03-08 15:50:29
这里并未涉及到jsr 181 annotations 的相关应用,具体的三种方式如下 ① 通过wsdl地址来创建动态客户端 ② 通过服务端提供的接口来创建客户端...

这里并未涉及到jsr 181 annotations 的相关应用,具体的三种方式如下

① 通过wsdl地址来创建动态客户端
② 通过服务端提供的接口来创建客户端
③ 使用ant通过wsdl文件来生成客户端

第一种方式:通过wsdl地址来创建动态客户端

package com.jadyer.client; 
import java.net.malformedurlexception; 
import java.net.url; 
import org.codehaus.xfire.client.client; 
/** 
 * 通过wsdl来创建动态客户端 
 * @see 此时需要在项目中引入xfire 1.2 core libraries和xfire 1.2 http client libraries 
 */ 
public class clientfromwsdl { 
 public static void main(string[] args) throws malformedurlexception, exception { 
 client client = new client(new url("http://127.0.0.1:8080/xfire_demo/services/xfireserver?wsdl")); 
 object[] results11 = client.invoke("sayhello", new object[]{"jadyer22"}); 
 system.out.println(results11[0]); 
 } 
} 

第二种方式:通过服务端提供的端口来创建客户端

package com.jadyer.client; 
import java.net.malformedurlexception; 
import java.util.list; 
import org.codehaus.xfire.client.xfireproxyfactory; 
import org.codehaus.xfire.service.service; 
import org.codehaus.xfire.service.binding.objectservicefactory; 
import com.jadyer.model.person; 
import com.jadyer.model.user; 
import com.jadyer.server.helloservice; 
/** 
 * 通过web服务端提供的接口来创建客户端 
 * @see 客户端必须提供一个与服务端完全一致的接口,包名也要一致 
 * @see 在本例中,需要在客户端(即该项目)中提供helloservice.java接口,以及person和user两个pojo类 
 * @see 并且此时需要在项目中引入xfire 1.2 core libraries和xfire 1.2 http client libraries 
 */ 
public class clientfrominterface { 
 public static void main(string[] args)throws malformedurlexception{ 
 //首先使用xfire的objectservicefactory从helloservice接口创建一个服务模型servicemodel 
 //servicemodel包含服务的说明,换句话说,就是服务的元数据 
 //create a metadata of the service 
 service servicemodel = new objectservicefactory().create(helloservice.class); 
 //访问的地址 
 string serviceurl = "http://127.0.0.1:8080/xfire_demo/services/xfireserver"; 
 //通过查看org.codehaus.xfire.client.xfireproxyfactory源码发现 
 //下面两行代码与这里直接new xfireproxyfactory()的作用是等效的 
 //xfire xfire = xfirefactory.newinstance().getxfire(); 
 //xfireproxyfactory factory = new xfireproxyfactory(xfire); 
 //为xfire获得一个代理工厂对象 
 //create a proxy for the deployed service 
 xfireproxyfactory factory = new xfireproxyfactory(); 
 //通过proxyfactory,使用服务模型servicemodel和服务端点url(用来获得wsdl) 
 //得到一个服务的本地代理,这个代理就是实际的客户端 
 helloservice client = (helloservice)factory.create(servicemodel, serviceurl); 
 /** 
  * invoke the service 
  * @see 调用服务的本地代理(即实际的客户端)中的方法,便得到我们需要的webservcie 
  */ 
 /*--处理简单对象--*/ 
 string serviceresponse = client.sayhello("jadyer11"); 
 system.out.println(serviceresponse); 
 /*--处理对象--*/ 
 user u = new user(); 
 u.setname("jadyer99"); 
 person pp = client.getperson(u); 
 system.out.println(pp.getname()); 
 /*--处理list--*/ 
 list<person> personlist = client.getpersonlist(24, "jadyer88"); 
 for(person p : personlist){ 
  system.out.println(p.getname()); 
 } 
 } 
} 

这是它要用到的接口和两个pojo类

/** 
 * web服务提供给客户端的接口 
 * @see 这是第二种方式创建的客户端,要用到的接口 
 */ 
package com.jadyer.server; 
import java.util.list; 
import com.jadyer.model.person; 
import com.jadyer.model.user; 
public interface helloservice { 
 public string sayhello(string name); 
 public person getperson(user u); 
 public list<person> getpersonlist(integer age, string name); 
} 
/** 
 * 第二种方式创建的客户端,要用到的两个pojo类 
 */ 
package com.jadyer.model; 
public class user { 
 private string name; 
 /*--getter和setter略--*/ 
} 
package com.jadyer.model; 
public class person { 
 private integer age; 
 private string name; 
 /*--getter和setter略--*/ 
} 

第三种方式:使用ant通过wsdl文件来生成客户端

package com.jadyer.client; 
/** 
 * 使用ant通过wsdl生成客户端 
 * @see 这里的clientfromant.java是我自己创建的,并非ant生成 
 * @see 这里要用到的jar有:xfire-all-1.2.6.jar以及//xfire-distribution-1.2.6//lib//目录中的所有jar包 
 * @see 我们需要把这些jar包都拷贝到web project//webroot//web-inf//lib//目录中 
 * @see 然后把build.xml和myfirstxfireserver.wsdl都拷贝到下web project的根目录下即可 
 * @see 关于myfirstxfireserver.wsdl文件,是我在webservices服务启动后 
 * @see 访问http://127.0.0.1:8080/xfire_demo/services/xfireserver?wsdl然后将其另存得到的 
 */ 
public class clientfromant { 
 public static void main(string[] args) { 
 xfireserverclient client = new xfireserverclient(); 
 //string url = "http://127.0.0.1:8080/xfire_demo/services/xfireserver"; 
 //string result = client.getxfireserverhttpport(url).sayhello("jadyer33"); 
 //上面的两行代码,与下面的这一行代码,同效~~ 
 string result = client.getxfireserverhttpport().sayhello("jadyer33"); 
 system.out.println(result); 
 } 
} 

用到的ant文件,如下

<?xml version="1.0" encoding="utf-8"?> 
<project name="wsgen" default="wsgen" basedir="."> 
 <path id="classpathid"> 
 <fileset dir="./webroot/web-inf/lib"> 
  <include name="*.jar" /> 
 </fileset> 
 </path> 
 <taskdef classpathref="classpathid" name="wsgen" classname="org.codehaus.xfire.gen.wsgentask"/> 
 <target name="wsgen" description="generate client"> 
 <wsgen outputdirectory="./src/" wsdl="myfirstxfireserver.wsdl" binding="xmlbeans" package="com.jadyer.client" overwrite="true"/> 
 </target> 
</project> 

也可以使用下面的这个ant文件

<?xml version="1.0" encoding="utf-8"?> 
<project name="xfireant" basedir="." default="createclientcode"> 
 <property name="xfirelib" value="${basedir}/webroot/web-inf/lib"/> 
 <property name="sources" value="${basedir}/src"/> 
 <path id="classpath"> 
 <fileset dir="${xfirelib}"> 
  <include name="*.jar"/> 
 </fileset> 
 </path> 
 <target name="createclientcode"> 
 <taskdef name="wsgen" classname="org.codehaus.xfire.gen.wsgentask" classpathref="classpath"/> 
 <wsgen outputdirectory="${sources}" wsdl="http://127.0.0.1:8080/xfire_demo/services/xfireserver?wsdl" package="com.jadyer.client" overwrite="true"/> 
 </target> 
</project> 

最后我再把myfirstxfireserver.wsdl的内容,附加上

<?xml version="1.0" encoding="utf-8"?> 
<wsdl:definitions targetnamespace="http://www.jadyer.com/xfiredemo" 
xmlns:tns="http://www.jadyer.com/xfiredemo" 
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" 
xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" 
xmlns:xsd="http://www.w3.org/2001/xmlschema" 
xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" 
xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" 
 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> 
 <wsdl:types> 
 <xsd:schema xmlns:xsd="http://www.w3.org/2001/xmlschema" 
   attributeformdefault="qualified" 
   elementformdefault="qualified" 
targetnamespace="http://www.jadyer.com/xfiredemo"> 
  <xsd:element name="sayhello"> 
  <xsd:complextype> 
   <xsd:sequence> 
   <xsd:element maxoccurs="1" minoccurs="1" name="in0" nillable="true" type="xsd:string" /> 
   </xsd:sequence> 
  </xsd:complextype> 
  </xsd:element> 
  <xsd:element name="sayhelloresponse"> 
  <xsd:complextype> 
   <xsd:sequence> 
   <xsd:element maxoccurs="1" minoccurs="1" name="out" nillable="true" type="xsd:string" /> 
   </xsd:sequence> 
  </xsd:complextype> 
  </xsd:element> 
 </xsd:schema> 
 </wsdl:types> 
 <wsdl:message name="sayhellorequest"> 
 <wsdl:part name="parameters" element="tns:sayhello"></wsdl:part> 
 </wsdl:message> 
 <wsdl:message name="sayhelloresponse"> 
 <wsdl:part name="parameters" element="tns:sayhelloresponse"></wsdl:part> 
 </wsdl:message> 
 <wsdl:porttype name="xfireserverporttype"> 
 <wsdl:operation name="sayhello"> 
  <wsdl:input name="sayhellorequest" message="tns:sayhellorequest"> 
  </wsdl:input> 
  <wsdl:output name="sayhelloresponse" message="tns:sayhelloresponse"> 
  </wsdl:output> 
 </wsdl:operation> 
 </wsdl:porttype> 
 <wsdl:binding name="xfireserverhttpbinding" type="tns:xfireserverporttype"> 
 <wsdlsoap:binding style="document" mce_style="document" transport="http://schemas.xmlsoap.org/soap/http" /> 
 <wsdl:operation name="sayhello"> 
  <wsdlsoap:operation soapaction="" /> 
  <wsdl:input name="sayhellorequest"> 
  <wsdlsoap:body use="literal" /> 
  </wsdl:input> 
  <wsdl:output name="sayhelloresponse"> 
  <wsdlsoap:body use="literal" /> 
  </wsdl:output> 
 </wsdl:operation> 
 </wsdl:binding> 
 <wsdl:service name="xfireserver"> 
 <wsdl:port name="xfireserverhttpport" binding="tns:xfireserverhttpbinding"> 
  <wsdlsoap:address location="http://127.0.0.1:8080/xfire_demo/services/xfireserver" /> 
 </wsdl:port> 
 </wsdl:service> 
</wsdl:definitions> 

第四种方法

这种方法用到了spring的jar包,是前几天在找xfire+spring的资料的时候看到的,在这里也是做个记录。同样的,这种方法和上面所提到的第二种方法在客户端都需要与服务器一样的接口,包名也必须一样。

(1)在src目录下新建client.xml(名字并非特定)

<?xml version="1.0" encoding="utf-8"?> 
<!doctype beans public "-//spring//dtd bean//en" "http://www.springframework.org/dtd/spring-beans.dtd"> 
<beans> 
 <bean id="baseservice" class="org.codehaus.xfire.spring.remoting.xfireclientfactorybean" lazy-init="false" abstract="true"/>
<!-- id的名字作为标识,用于客户端程序中获取service,若有多个service咋在下面添加多个bean即可-->
 <bean id="mathservice" parent="baseservice">
 <property name="serviceclass">
 <value>service.mathservice</value>
 </property>
 <property name="wsdldocumenturl">
<value>http://localhost:8080/myservice/mathwebservice?wsdl</value>
 </property>
 </bean>
</beans> 

(2)在程序中调用服务代码非常简单

applicationcontext ctx = new classpathxmlapplicationcontext("client.xml");
mathservice mathservice = (mathservice)ctx.getbean("mathservice");
int result = mathservice.add(int one,int two);

第五种办法

先获取到wsdl文件,命名为mathwebservice.wsdl放在客户端的src目录下,接着通过程序访问该wsdl文件,并调用需要的方法。

 string wsdl = "mathwebservice.wsdl " ; // 对应的wsdl文件 
 resource resource = new classpathresource(wsdl); 
 client client = new client(resource.getinputstream(), null ); // 根据wsdl创建客户实例 
 object[] objarray = new object[ 2 ];
 objarray[ 0 ] = 2 ;
 obiarray[1] = 3;
  // 调用特定的web service方法 
 object[] results = client.invoke( " add " , objarray);
 system.out.println( " result: " + results[ 0 ]);

对于这几种方法,第一种方法如果传递的参数为服务器端的实体对象,这点好像比较麻烦,不知道在客户端建立和服务器端相同的实体类行不行,没有实践,返回结果如果是复杂数据类型的话不知道有没有什么问题,或者如何转换,没有深入研究。而且我个人觉得方法调用不是那么直观。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!