我正在使用 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 但是,我的客户端(我与之集成
          <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
} 
 但是,添加这样的低级命名空间声明可能会产生副作用,因此请谨慎行事.
