几个软件地址连接如下:
eclipse:http://www.eclipse.org/downloads/
tomcat:http://tomcat.apache.org/
Xfire:http://xfire.codehaus.org/Download 下载二进制的版本,因为涉及到里面的所有的JAR包和还要下xfire-all-1.1.jar
Xfire eclipse plug-in 插件:http://dist.codehaus.org/xfire/update/
(1)在Eclipse中新建一个dynamic Web Project ,假设名为XFireTest。
(2)导入XFire用户库。该库中应包含xfire-1.2.6目录下的xfire-all-1.2.6.jar文件,以及xfire-1.2.6/lib目录下的所有文件(就在你下的二进制包里面)。
(3)将上述的XFire用户库中的所有文件拷贝到XFireTest项目的WebContent/WEB-INF/lib目录下。
(4)修改WebContent/WEB-INF/web.xml配置文件的内容,下面是修改后web.xml:
XFireZhuweiTest
org.codehaus.xfire.transport.http.XFireConfigurableServlet
web.xml中添加的servlet映射表明,所有匹配“/services/*”的url请求全部交给org.codehaus.xfire.transport.http.XFireConfigurableServlet来处理。
(5)创建webservice类或者接口
package com.Alex.manager;
public class Manager {
public void sayHello() {
System.out.print("hello");
}
public String getMessage() {
return "your message is hello";
}
public String getMessage(String message) {
return "now the message is" + message;
}
}
(6)在WebContent/META-INF目录下新建xfire文件夹,然后在xfire目录下添加一个XFire使用的配置文件services.xml,该配置文件中的内容反映了要将哪些java类发布为web服务。本例中的services.xml内容如下:
注:
XFire会借助Spring来解析services.xml,从中提取需要发布为WebService的配置信息。
然而当我按照他们所说的启动WebService ,然后通过http://localhost:8080/XFireTest/services/myservice?wsdl 来访问服务描述时,却抛出了异常,说services.xml文件不存在--
“org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [META-INF/xfire/services.xml]; nested exception is java.io.FileNotFoundException: class path resource [META-INF/xfire/services.xml] cannot be opened because it does not exist”。
(7)非常关键的一点 需要将WebContent下的整个META-INF文件夹剪切到classes文件夹下。