使用camel cxf端点消耗一个没有正文的操作



我有一个源web服务,它有一个不接受任何主体作为请求的操作。这是它期望的请求:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header/>
<soap:Body/>
</soap:Envelope>

我有一个消费者服务,它使用camel cxf:cxfEndpoint调用此操作。端点被配置为数据格式为"Payload"。类似这样的东西:

<camel-cxf:cxfEndpoint
address="SOURCE_ENDPOINT"
id="abcEndpoint" serviceClass="PATH_TO_GENERATED_SERVICE_CLASS">
<camel-cxf:properties>
<entry key="dataFormat" value="PAYLOAD"/>
</camel-cxf:properties>
<camel-cxf:outInterceptors>
<ref component-id="wss4jOutInterceptor"/>
</camel-cxf:outInterceptors>
</camel-cxf:cxfEndpoint>

在调用此操作时,我将body设置为null,期望CXFInterceptor用SOAPEnvelope包装body。然而,当我呼叫该服务时,我得到:

java.lang.IollegalArgumentException:PayLoad元素无法容纳具有BindingOperation的消息部分。请检查BindingOperation和PayLoadMessage

我检查了从源wsdl生成的ServiceClass,以检查操作是否需要任何正文。以下是它所期望的方法:

@WebMethod(operationName = "SomeOperation", action = "SomeOperation")
@WebResult(name = "Result", targetNamespace = "namespace_for_the_service", partName = "data")
public Result someOperation();

我还尝试使用XSLT将其转换为不添加任何元素但不解决任何问题的XML。我是不是错过了什么?是因为有效载荷的dataFormat吗?

您的SOAP信封不需要至少包含目标调用方法的最小正文吗?

<soap:Body>
<m:SomeOperation xmlns:m="..."/>                 
</soap:Body>

我能够通过创建一个空的CxfPayload:来解决这个问题

List<Source> elements = new ArrayList<Source>();
CxfPayload<SoapHeader> cxfPayload = new CxfPayload<SoapHeader>(null, elements, null);
exchange.getIn().setBody(cxfPayload);

这对我有用!!!!

相关内容

  • 没有找到相关文章

最新更新