0

我想在 JBoss 上运行的异步 Web 服务中设置/获取 SOAP 标头(特别是wsa:ReplyTo和)。wsa:MessageId

因为这是一个 JBoss 平台,所以我不能使用com.sun.xml.ws.developer.WSBindingProvider(如JAX-WS - 添加 SOAP Headers中推荐的那样)。

一种选择是使用SOAPHandler. 还有其他类似于WSBindingProvider解决方案的方法吗?

4

1 回答 1

1

不幸的是,您需要为此使用特定的处理程序。以前版本的 JBOSS EAP 确实支持这些javax.xml.ws.addressing包,但看起来这些包不是 EE6 的一部分。

定义处理程序,例如jaxws-handlers.xml

<handler-chains xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee javaee_web_services_1_3.xsd">

  <handler-chain>
    <protocol-bindings>##SOAP11_HTTP</protocol-bindings>
    <handler>
      <handler-name>Application Server Handler</handler-name>
      <handler-class>com.handler.ServerHandler</handler-class>
   </handler>
 </handler-chain>

添加@HandlerChain到服务类定义中:

@WebService (...)
@HandlerChain(file="jaxws-handlers.xml")
public class TestServiceImpl implements TestService {
   public String sayHello(String name) {
      return "Hello " + name + "!";
   }
}

并将处理程序本身实现为:

public class ServerHandler implements SOAPHandler<SOAPMessageContext> {
    @Override
    public boolean handleMessage(final SOAPMessageContext context) {
        final Boolean outbound = (Boolean)context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);
        if ((outbound != null) && !outbound) {
            //...
        }
        return true;
    }
}
于 2014-02-08T00:38:13.790 回答