gpt4 book ai didi

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

转载 作者:数据小太阳 更新时间:2023-10-29 02:07:24 25 4
gpt4 key购买 nike

我使用的是 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>

但是,我的客户(我与之集成)要求我添加更多 namespace 声明以便解析成功:

<?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
}

不过,添加此类低级命名空间声明可能会产生副作用,因此请谨慎行事。

关于xml - 强制 Spring Web 服务将 xsd 命名空间添加到响应中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2813320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com