1

我有两个代码项目都使用 CXF 来使用 Web 服务。当我从项目 A 调用项目 B 时,我正在调用的方法接收空参数。我打开了日志记录,入站消息确实包含正确的参数。我还尝试从 SoapUI(一种网络服务测试工具)调用我的服务。正如我所料,这会传递参数。有人知道出了什么问题吗?

服务接口:

@WebService
public interface IShortlistService {

  public IShortlist createOrUpdateShortlist(@WebParam(name = "sessionId") String sessionId,
      @WebParam(name = "datastoreInstance") String datastoreInstance,
      @WebParam(name = "datastoreRecordId") String datastoreRecordId);
}

服务内涵:

@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 注释
  • 以编程方式配置
  • Aegis 数据绑定(JAXWS 不喜欢接口)
4

2 回答 2

0

@Lee Theobald ...您发布的问题中没有任何明显的内容可以揭示为什么它不适合您。在这种情况下,“答案”就是请求“CXF 用户”的帮助,并在必要时打开 JIRA。在问题评论中播放 20 个问题效率不高,而且目前该列表上的 CXF 专家眼球比这里要多得多。揭开谜底后,我们可以将修改后的问题和答案带回这里。

于 2010-01-18T17:43:30.073 回答
0

好的,问题已作为错误解决。我正在使用其界面的那个人在部署他的服务之前没有从存储库更新,并且由于他签入但没有部署的东西发生了变化(删除了 throws 子句),我使用了更新的版本存储库。他的版本的界面抛出了异常,而我的版本的界面没有这么说。所以:

如果服务提供者和服务客户​​端使用稍微不同的接口,则可能会发生此错误。

于 2010-10-04T11:46:15.580 回答