来自Citrus SOAP服务器模拟的MTOM响应中缺少附件

时间:2018-01-16 16:09:12

标签: soap mtom citrus-framework

我已经构建了一个样本Citrus测试用例来模拟一个响应MTOM附件的SOAP服务器

runner.soap(action -> action.server("simulationServer")
        .receive()
        ...[validation etc]
);

runner.soap(action -> action.server("simulationServer")
        .send()
        .name("get-response")
        .mtomEnabled(Boolean.TRUE)
        .attachment("myAttachment", "application/octet-stream", new ClassPathResource("testfiles/myAttachment.pdf"))
        .payload("<getResponse xmlns:xmime=\"http://www.w3.org/2005/05/xmlmime\">\n" +
                "    <document>\n" +
                "        <contentElements>\n" +
                "            <contentElement xmime:contentType=\"application/pdf\">cid:myAttachment</contentElement>\n" +
                "        </contentElements>\n" +
                "        <id>Test</id>\n" +
                "    </document>\n" +
                "</getResponse>\n")
);

当我运行此测试并使用SoapUI调用Citrus模拟时,我在调试日志中看到myAttachment.pdf的内容。所以至少它看起来像Citrus试图发送附件。

但是,SoapUI中的我没有附件。 SOAP响应中有一个XOP元素,但没有附件。柑橘响应的SoapUI的RAW视图看起来像这样。

HTTP/1.1 200 OK
Date: Tue, 16 Jan 2018 15:30:36 GMT
Accept: text/xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
SOAPAction: ""
Content-Type: Multipart/Related; boundary="----=_Part_0_382348859.1516116636524"; type="application/xop+xml"; start-info="text/xml"
Transfer-Encoding: chunked
Server: Jetty(9.4.6.v20170531)

------=_Part_0_382348859.1516116636524
Content-Type: application/xop+xml; charset=utf-8; type="text/xml"

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><getResponse xmlns:xmime="http://www.w3.org/2005/05/xmlmime">
    <document>
        <contentElements>
            <contentElement xmime:contentType="application/pdf"><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:myAttachment"/></contentElement>
        </contentElements>
        <id>Test</id>
    </document>
</getResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
------=_Part_0_382348859.1516116636524--

在带附件的MTOM回复中,附件从此RAW视图结束的地方开始。它应该像这样继续

------=_Part_0_382348859.1516116636524-- [last line from above]
Content-Type: application/pdf
Content-Transfer-Encoding: binary
Content-ID: <myAttachment>

%PDF-1.4... [PDF content]

我正在使用Citrus 2.7.2版本。

更新

仍然没有成功。 Wireshark显示与SoapUI相同的图片:响应中缺少附件。

但是,当我调试服务器(Citrus)端的代码时,我会在响应消息中看到附件,直到我在MessageSendingTemplate的某处丢失。控制台日志上相同。该邮件包含附件。

Citrus文档中有一个内联MTOM变体,但我找不到在Java配置中为附件设置此mtom-inline的方法。

任何提示,在哪里设置断点以查找附件丢失的位置?或者柑橘方面的任何其他建议/例子?

2 个答案:

答案 0 :(得分:1)

setMtomInline字段位于SoapAttachment 界面上。我不确定我是否正确设置 - 但似乎适用于内联附件 - 无法使用soap附件/ multipart。 SoapUI Mock在接收来自以下测试用例的请求时不显示任何附件。

    SoapAttachment soapAttachment = new SoapAttachment();
    soapAttachment.setMtomInline(false);
    soapAttachment.setContentResourcePath("log4j.xml");
    soapAttachment.setContentType("application/octet-stream");
    soapAttachment.setContentId("FILE");

    SoapMessage soapMessage = new SoapMessage();
    soapMessage.mtomEnabled(true);
    soapMessage.soapAction("/HelloService/sayHello");
    soapMessage.setPayload(
            "<ht:HelloRequest " +
                    "xmlns:ht=\"http://citrusframework.org/schemas/samples/HelloMtomService\" " +
                    "xmlns:xop=\"http://www.w3.org/2004/08/xop/include\" >\n" +
                    "   <ht:Message>Hei .. citrus does stream mtom</ht:Message>\n" +
                    "   <ht:Data><xop:Include href=\"cid:FILE\"/></ht:Data>\n" +
                    "</ht:HelloRequest>");
    soapMessage.addAttachment(soapAttachment);

    runner.soap(action -> {
        action.client("helloMtomSoapuiClient")
                .send()
                .soapAction("/HelloService/sayHello")
                .message(soapMessage);
    });

如果我为MtomInline设置为true执行相同的操作,我会在ht:Data节点中看到附件为base64编码的内容文本。

        SoapAttachment soapAttachment = new SoapAttachment();
    soapAttachment.setContentResourcePath("log4j.xml");
    soapAttachment.setMtomInline(true);
    soapAttachment.setContentType("application/xml");
    soapAttachment.setContentId("MyAttachement");
    soapAttachment.setEncodingType("base64Binary");

    runner.soap(action -> {
        action.client("helloMtomSoapuiClient")
                .send()
                .soapAction("/HelloService/sayHello")
                .mtomEnabled(true)
                .payload("<ht:HelloRequest xmlns:ht=\"http://citrusframework.org/schemas/samples/HelloMtomService\">\n" +
                        " <ht:Message>Hei .. citrus does mtom</ht:Message>\n" +
                        " <ht:Data>cid:MyAttachement</ht:Data>\n" +
                        "</ht:HelloRequest>")
                .attachment(soapAttachment);
    });

肥皂或柑橘都吞下了附属品。一些帮助或工作JavaDSL样本会很好。

答案 1 :(得分:0)

这实际上是一个将在Citrus 2.7.4版本中修复的错误。见https://github.com/christophd/citrus/issues/328

带有XML配置的内联MTOM变体适用于当前版本。

<ws:send endpoint="simulationServer" mtom-enabled="true">
    <message>
        <resource file="testfiles/simulation/get-response.xml" />
    </message>
    <ws:attachment content-id="myAttachment" content-type="application/octet-stream" mtom-inline="true" encoding-type="base64Binary">
        <ws:resource file="classpath:testfiles/myAttachment.pdf"/>
    </ws:attachment>
</ws:send>