当前位置: 代码迷 >> Web前端 >> webservice xfire hello例证整理
  详细解决方案

webservice xfire hello例证整理

热度:603   发布时间:2012-10-24 14:15:58.0
webservice xfire hello例子整理
配置文件(默认路径):\META-INF\xfire\services.xml
测试服务器:\demo\hello\test\Service.java
测试客户端:\demo\hello\test\Client.java

web.xml配置:
<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" 
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <servlet> 
        <servlet-name>xfire</servlet-name> 
        <servlet-class>org.codehaus.xfire.transport.http.XFireConfigurableServlet</servlet-class> 
    </servlet> 
 
    <servlet-mapping> 
        <servlet-name>xfire</servlet-name> 
        <url-pattern>/services/*</url-pattern> 
    </servlet-mapping> 
 
</web-app>
  相关解决方案