我有兩個使用CXF來使用Web服務的代碼項目。當我從項目A調用項目B時,我調用的方法會收到空參數。我打開了日誌記錄,並且入站消息確實包含正確的參數。我也嘗試從SoapUI(一個web服務測試工具)調用我的服務。這正如我所期望的那樣傳遞參數。任何人有任何想法出了什麼問題?通過CXF的Web服務調用提供空參數
服務接口:
@WebService
public interface IShortlistService {
public IShortlist createOrUpdateShortlist(@WebParam(name = "sessionId") String sessionId,
@WebParam(name = "datastoreInstance") String datastoreInstance,
@WebParam(name = "datastoreRecordId") String datastoreRecordId);
}
服務IMPL:
@Name("shortlistService")
@WebService(endpointInterface = "com.oobjects.shortlist.service.IShortlistService", serviceName = "ShortlistService")
@Features(features = "org.apache.cxf.feature.LoggingFeature")
@Transactional
public class ShortlistService implements IShortlistService {
public IShortlist createOrUpdateShortlist(String sessionId, String datastoreInstance,
String datastoreRecordId) {
// At this point all inputs are null
}
}
記錄入站的消息,證明它是確定:
INFO: Inbound Message
----------------------------
Encoding: UTF-8
Content-Type: text/xml; charset=UTF-8
Headers: {cache-control=[no-cache], content-type=[text/xml; charset=UTF-8], connection=[keep-alive], host=[mypc.mycompany.com:8080], content-length=[391], SOAPAction=[""], user-agent=[Apache CXF 2.2.5], Accept=[*/*], pragma=[no-cache]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns1:createOrUpdateShortlist xmlns:ns1="http://service.shortlist.mycompany.com/"><sessionId>854a48b5-922f-4081-9c76-b6d08b58a341</sessionId><datastoreInstance>http://mypc.mycompany.com:8080/shortlist-app/services/ShortlistService</datastoreInstance></ns1:createOrUpdateShortlist></soap:Body></soap:Envelope>
--------------------------------------
CXF的版本是相同的( 2.2.5)。我想不出還有什麼要檢查的!
一些要求信息...
- @Name是Seam的註釋
- 編程
- 宙斯盾綁定配置(JAXWS不喜歡接口)
你怎麼配置?哪些數據綁定?什麼名字? – bmargulies 2010-01-18 16:29:37
我已在最後添加了您請求的信息。 – 2010-01-18 17:20:14
簡單的前端呢?它不會尊重這些@WebService註釋。 恐怕這對cxf用戶會更好。這不是一個簡單的「我可以回答你的問題」的事情,這將是一個擴展的診斷練習。 – bmargulies 2010-01-18 17:40:38