myeclipse使用xfire开发webservice .

1.新建一个webservice project,如图所示

myeclipse使用xfire开发webservice ._第1张图片

2.点击下一步出现,如下对话框

myeclipse使用xfire开发webservice ._第2张图片

3.接着点下一步

myeclipse使用xfire开发webservice ._第3张图片

4.下面点击finish项目就自动生成了,结构如下

myeclipse使用xfire开发webservice ._第4张图片

5.下面先来写接口和实现类

[java] view plain copy print ?
  1. package org.lxh.dao;  
  2.   
  3. public interface SayHello {  
  4.   public void say(String name);  
  5. }  

[java] view plain copy print ?
  1. package org.lxh.impl;  
  2.   
  3. import org.lxh.dao.SayHello;  
  4.   
  5. public class Person implements SayHello{  
  6.   
  7.     public void say(String name) {  
  8.         // TODO Auto-generated method stub   
  9.        System.out.println("你好:"+name);  
  10.     }  
  11.   
  12. }  

6.配置services.xml

[html] view plain copy print ?
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://xfire.codehaus.org/config/1.0">  
  3. <service>  
  4.   
  5.        <name>myxfire</name>  
  6.   
  7.        <serviceClass>org.lxh.dao.SayHello</serviceClass>  
  8.   
  9.        <implementationClass>org.lxh.impl.Person</implementationClass>  
  10.   
  11.        <style>wrapped</style>  
  12.   
  13.        <use>literal</use>  
  14.   
  15.        <scope>application</scope>  
  16.   
  17.         </service>  
  18. </beans>  

name就是webservice的名称,大家可以随意

7.点击下面飘红的图标,输入http://localhost:8089/usexfire/services/myxfire?WSDL。点下go就会出现如下界面







myeclipse使用xfire开发webservice ._第5张图片

其中amy就是我的参数。控制台就会输出内容如下所示

myeclipse使用xfire开发webservice ._第6张图片

到这里程序就写好了,大家自己可以写客户端程序在测试下。我给大家个截图大家参考下,记得引入XFire HTTP Client Libraries


大家改改接口名或类名就可以用了。


你可能感兴趣的:(myeclipse使用xfire开发webservice .)