我们正在使用spring-ws 2.2.0开发合同优先的WebService。我们正在尝试使用位于SoapHeader中的名为AuthToken的自定义标签来管理身份验证。
AuthToken具有以下结构:

<authToken>
    <username>USERNAME</xa:username>
    <password>PASSWORD</xa:password>
</authToken>


我们能够生成一个包含SoapHeader内部指定的自定义身份验证标签的WSDL模式。
问题在于,当客户端执行对我们服务器的调用时,我们无法在Ws Endpoint实现中解组AuthToken标签(位于SoapHeader中)。

使用绑定方法签名中的@RequestPayload注释(如以下示例中指定的handleMethodRequest),我们可以访问未编组的有效内容(位于SoapBody中)。
我们试图用SoapHeader内容做同样的事情,但没有成功。
在以下代码示例中,我们向您展示了我们想要获得的信息:

1
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "methodRequest")
@ResponsePayload
public MethodResponse handleMethodRequest(@RequestPayload MethodRequest request, @SoapHeader(value = "authToken") AuthToken authToken) { }

2
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "methodRequest")
@ResponsePayload
public MethodResponse handleMethodRequest(@RequestPayload MethodRequest request, AuthToken authToken) { }

3
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "methodRequest")
@ResponsePayload
public MethodResponse handleMethodRequest(@RequestPayload MethodRequest request, org.springframework.ws.soap.SoapHeader header) { }

4
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "methodRequest")
@ResponsePayload
public MethodResponse handleMethodRequest(@RequestPayload MethodRequest request, MessageContext messageContext) { }


在情况1、2中,我们得到以下错误:

No adapter for endpoint [MethodResponse EndpointImplementation.handleMethodRequest(MethodRequest, AuthToken) throws java.lang.Exception]: Is your endpoint annotated with @Endpoint, or does it implement a supported interface like MessageHandler or PayloadEndpoint?


在情况3、4中,我们没有错误,但是我们无法处理SoapHeader或MessageContext(分别在情况3和4中)达到我们的目的,访问AuthToken来检索用户名和密码子元素。

在网络上寻找解决方案时,我们发现许多有相同问题的人都使用Spring Interceptor来处理身份验证。
按照“拦截器方式”,我们应该访问拦截器内部的AuthToken。不幸的是,我们需要将handleMethodRequest方法内的AuthToken字段用于其他目的,例如加载特定于用户的数据,而在handleMethodRequest之外无法访问。
因此,我们不能采用这种方式,因为我们需要在handleMethodRequest方法内引用用户特定的数据。

有谁知道我们如何解决这个问题?提前致谢。

最佳答案

对于该用例,注释和参数类型的唯一受支持组合是@SoapHeaderSoapHeaderElement。 Spring-WS当前不支持unmarshalling headers

09-10 07:47