xml – 强制Spring Web服务将xsd命名空间添加到响应中

我正在使用 Spring WS 1.5.8版.我的回答如下:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> 
   <SOAP-ENV:Header/> 
   <SOAP-ENV:Body> 
      ...
   </SOAP-ENV:Body> 
</SOAP-ENV:Envelope>

但是,我的客户端(我与之集成)要求我添加更多的命名空间declerations以便解析成功:

<?xml version="1.0" encoding="UTF-8"?> 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">          
    <soapenv:Body> 
         ... 
    </soapenv:Body> 
</soapenv:Envelope>

我该怎么做?

解决方法

您可能不需要我告诉您任何需要某些命名空间声明的SOAP客户端,当文档中未使用这些命名空间时,会被破坏.所以我不会提到这一点.

但是,如果您确实希望改变响应,可以使用EndpointInterceptor,特别是SoapEndpointInterceptor.您可以连接端点拦截as described here.

您的自定义拦截器可以实现handleResponse方法,将messageContext.getResponse()转换为SoapMessage并添加您需要的任何内容

public class MyInterceptor implements SoapEndpointInterceptor {

    public boolean handleResponse(MessageContext messageContext,Object endpoint) throws Exception {
        SoapMessage message = (SoapMessage) messageContext.getResponse();
        message.getEnvelope().addNamespaceDeclaration(....);
        return true;
    }

    // ... other methods here
}

但是,添加这样的低级命名空间声明可能会产生副作用,因此请谨慎行事.

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念