我正在使用 MTOM 将附加文件从客户端流式传输到服务器。

MTOM 得到应用,文件以二进制形式流式传输。但是根 Content-Type 总是 "text/xml" 应该是 "application/xml+xop"。

问题仅出现在 websphere 中。内容类型在 websphere 中设置为 "text/xml"

websphere 自由配置文件 中,内容类型设置为 "application/xml+xop"

------=_Part_7283_-2062365125.1458743649653
Content-Type: text/xml; charset=UTF-8
Content-Transfer-Encoding: binary
Content-Id: <511212039242.1458743649653.IBM.WEBSERVICES@lsrv4665.linux.rabobank.nl>

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <soapenv:Header>
        </soapenv:Header>
        <soapenv:Body>
          <Content><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:58cf03d2-322f-4819-80fb-3b001f497d12%40www.test.com"/>
          </Content>
        </soapenv:Body>
    </soapenv:Envelope>

    Content-Type: application/pdf; name=attachment.pdf

Content-Transfer-Encoding: binary

最佳答案

我收集了几个答案。希望第一个答案适合您。为预防起见,我还添加了一些其他带有链接的答案。希望它能救你。

答案-1:

服务器端(Weblogic 中的 JAX-WS)

使用 @MTOM 注释或 mtom.xml 策略

客户端(Weblogic 中的 JAX-WS)

Pass MTOMFeature() as argument:
MtomService port = service.getMailServicePort(new MTOMFeature());

通过 SOAPUI 的 MTOM 附件,3 个步骤:
  • 请求属性中的 Set Enable MTOM = true
  • 上传附件(例如 A3.pdf),注意 contentID
  • 在xml请求中设置MTOM contentID

  • 这是一个带有 weblogic 图像的完整示例。希望它适合您的问题。( Sending attachment: MTOM / XOP vs SWA and inline attachment 的链接)

    另一个资源链接:
  • Steps to Use MTOM/XOP to Send Binary Data
  • Error consuming webservice, content type “application/xop+xml” doesnot match expected type “text/xml”


  • 答案 2:

    拉入 saaj-impl 1.3.23 并为 javax.xml.soap.* 选择应用程序类解决了这个问题。

    资源链接:https://jira.spring.io/browse/SWS-855

    答案 3:

    从 mkyong 的 tutorial ,可以解决在客户端和服务器上启用 mtom 的问题。

    在服务器上启用 MTOM:

    启用服务器通过 MTOM 发送附件非常简单,只需使用 javax.xml.ws.soap.MTOM 注释 web 服务实现类。

    在客户端启用 MTOM:

    启用客户端通过 MTOM 向服务器发送附件需要一些额外的努力,请参见以下示例:
    //codes enable MTOM in client
    BindingProvider bp = (BindingProvider) imageServer;
    SOAPBinding binding = (SOAPBinding) bp.getBinding();
    binding.setMTOMEnabled(true);
    

    Ans-4

    归功于@ BalusC 。他用他很棒的教程给出了一个很棒的答案。

    当页面通过 HTTP 提供时,元标记将被忽略。

    使用 JSP 时,

    你应该把 <%@ page pageEncoding="UTF-8" %> 放在最上面。

    使用 Servlet 时,

    你应该做 response.setCharacterEncoding("UTF-8");

    两者都将在内容类型 header 中隐式设置正确的字符集。您可能会发现这篇文章很有用: Unicode - How to get characters right? 。对于 JSP/Servlet 解决方案,从 this chapter 开始。

    资源链接:
  • How to set the "Content-Type ... charset" in the request header using a HTML link


  • 对于研究,您可以通过以下方式

    对于 Java servlet,你应该有一行
    response.setContentType("text/html");
    doGetdoPost 方法的顶部,其中 response 是对 HttpServletResponse 的引用。

    相关链接:
  • How to set up your server to send the correct MIME types
  • Character Encoding problem with IBM's JSF and Ajax

  • 另一个答案

    我已经弄清楚是什么导致了这个问题,但我不明白为什么。当对请求执行出错操作时,行为会自行显示。附件是一个简单 MPG 的 zip 文件,其中包含演示这一点的请求、响应和错误规则。该请求有一个 on-error 操作、一个执行 dp:reject(强制错误)的简单 xform 和一个 results 操作。错误规则有一个结果操作和一个 set var 操作。如果您保留 on-error,则响应内容类型将作为“text/xml”返回。如果删除 on-error,内容类型会正确返回“application/json”。 (从以下资源链接复制)

    资源链接:
  • How to set header Content-Type in error rule
  • 10-07 21:13