我有一个客户端将启用了 MTOM 的 pdf 二进制文档发送到 soapservice 的问题。服务正确公开和服务。当我调用公开服务的服务器端点时一切正常,当我通过“服务网关”调用相同的服务时,它在收到所有请求后发回“错误请求”。
>Accept-Encoding: gzip
>Content-Type: multipart/related;type="application/xop+xml";start-info="text/xml"
>Content-Disposition: attachment
>Accept: text/xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
>SOAPAction: "http://ws.documents...."
>Content-Type: Multipart/Related; boundary="----=_Part_1_1067527082.1584978884916"; >type="application/xop+xml"; start-info="text/xml"
>Cache-Control: no-cache
>Pragma: no-cache
>User-Agent: Java/1.8.0_222
>Host: service.xx.yy:8080
>Connection: keep-alive
>Content-Length: 105614
....
> This is the trace of the service gateway:
> v^[¹‹‘HTTP/1.1 400 [ISC.0064.9101] Bad Request Connection: close
> Content-Length: 0
同一个服务网关是没有 mtom 的所有其他服务的直通,一切正常。奇怪的是,当我使用带有附件的soapui 调用并通过服务网关启用MTOM 时,调用正确结束。这是代码的核心:
response = (JAXBElement<CreateDocumentsResponseType>) wst.marshalSendAndReceive(uri,request);
- 其中wst是启用了 MTOM 的普通 WebServiceTemplate 实例
- request是用数据处理程序打包的文档编组的信封。
在发送消息之前,我制作了一个拦截器来使用自定义身份验证设置请求标头。