Spring整合XFire開發WebService

2021-08-31 20:28:15 字數 533 閱讀 5835

1 配置xfire servlet

在web.xml中加入如下配置:

2、定義介面及實現服務

定義介面,這個介面中定義要通過webservice暴露的方法

package com.fczfr.webservice.hello;

publicinte***ce hellows

實現服務

package com.fczfr.webservice.hello.impl;

publicclass hellowsimp implements hellows

}

4 配置服務

將上文中實現的服務,加入到spring的配置檔案中。

<?xml version="1.0" encoding="utf-8"?>

好了現在你可以通過來驗證是否部署成功了。

Spring與XFire的整合 摘

xfire org.springframework.web.servlet.dispatcherservlet 2 service basewebservice class org.codehaus.xfire.spring.remoting.xfireexporter abstract true ...

XFire客戶端開發

引入 xfire相關的類庫 1.使用wsdl生成靜態客戶端 訪問任意語言編寫的web service 2.使用介面生成靜態客戶端 必須拿到服務端的介面class檔案 遠端 工廠 xfireproxyfactory factory new xfireproxyfactory 建立服務模型 servic...

Xfire方式開發和解析webservice

具體的開發webservice步驟 1 新建專案2 匯入相關xfire架包主要xfire 1.2.6下xfire all 1.2.6.jar架包和lib下的所有jar架包3 在web.xml配置檔案中引入xfire相關配置xfireservletorg.codehaus.xfire.transpor...