我想在JBoss上运行的Asynchronouse Webservice中设置/获取SOAP标头(特别是wsa:ReplyTo
和wsa:MessageId
)。
由于这是一个JBoss平台,我无法使用com.sun.xml.ws.developer.WSBindingProvider
(按照JAX-WS - Adding SOAP Headers中的建议)。
一种选择是使用SOAPHandler
。还有其他类似于WSBindingProvider
解决方案的方法吗?
答案 0 :(得分:1)
不幸的是,您需要为此使用特定的处理程序。以前版本的JBOSS EAP确实支持javax.xml.ws.addressing
包,但看起来这些包不是EE6的一部分。
定义处理程序,例如jaxws-handlers.xml
as:
<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
添加到Service类定义中:
@WebService (...)
@HandlerChain(file="jaxws-handlers.xml")
public class TestServiceImpl implements TestService {
public String sayHello(String name) {
return "Hello " + name + "!";
}
}
将Handler本身实现为:
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;
}
}