使用SoapJaxbDataFormat marshal构造SOAP请求

时间:2017-08-08 17:29:18

标签: java web-services soap apache-camel cxf

尝试使用SoapJaxbDataFormat marshal方法构造soap请求。 路线:

private SoapJaxbDataFormat soap = new SoapJaxbDataFormat("<manage order generated package path>");

public void configure() throws Exception {
    soap.setVersion("1.2");
    from("direct:" + "invokeSoapServiceRoute")
        .process(new constructManageOrderRequestObject())
        .setHeader(Exchange.SOAP_ACTION, simple(MANAGE_ORDER_SOAP_ACTION))
        .setHeader(Exchange.HTTP_METHOD, simple(HTTP_METHOD_POST))
        .setHeader(Exchange.CONTENT_TYPE, constant("application/soap+xml;charset=UTF-8"))
        .marshal(soap) //request
        .log(LoggingLevel.DEBUG, LOG, "request ===========>${body}")
    .end();
}

constructManageOrderRequestObject处理器创建ManageOrderRequest对象(类在构建时使用maven从WSDL生成)并设置其所有不同的属性(其他引用)并将对象设置为交换主体。当我使用上面的代码编组正文时,它会记录下面的输出 -

<?xml version="1.0" encoding="UTF-8"?>
<ns0:Envelope xmlns:ns0="http://www.w3.org/2003/05/soap-envelope">
   <ns0:Body>
      <ns1:manageOrderRequest xmlns:ns1="http://cap.xe.com/xsd/ManageOrder/2010/06/01">com.xe.cap.ManageOrderRequest@40c3dcba</ns1:manageOrderRequest>
   </ns0:Body>
</ns0:Envelope>

它没有转换ManageOrderRequest对象xml,而是在soap-body中使用它的对象引用。

有人可以帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:

需要使用soap.setContextPath设置上下文路径(&#34;包名称&#34;)