How do I add a SOAP Header using Java JAX-WS - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T11:15:49Zhttp://stackoverflow.com/feeds/question/830691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/830691/how-do-i-add-a-soap-header-using-java-jax-ws3How do I add a SOAP Header using Java JAX-WSRedGrittyBrick2009-05-06T17:07:29Z2009-05-07T16:14:10Z
<p>A typical SOAP client request using JAX-WS might be</p>
<pre><code>FooService service = new FooService();
FooPort port = service.getFooPort();
FooPayload payload = new FooPayload();
payload.setHatSize(3);
payload.setAlias("The Hat");
...
port.processRequest(payload);
</code></pre>
<p>This generates an HTTP request content something like</p>
<pre><code><?xml ... ?>
<S:Envelope xmlns:S="http://...soap-envelope">
<S:Body>
<!-- payload -->
</S:Body>
</S:Envelope>
</code></pre>
<p>By manipulating the arguments to the port.processRequest() call you can only affect the "payload" part. You can't affect the outer part of the XML message.</p>
<p>I want to insert a SOAP header just before the SOAP Body </p>
<pre><code><S:Header>
<X:Security xmlns:X="http://...wsssecurity...>
<X:BinarySecurityToken>kjh...897=</X:BinarySecurityToken>
</X:Security>
</S:Header>
</code></pre>
<p>How do I do that? </p>
http://stackoverflow.com/questions/830691/how-do-i-add-a-soap-header-using-java-jax-ws/830772#8307720Answer by Nuno Furtado for How do I add a SOAP Header using Java JAX-WSNuno Furtado2009-05-06T17:25:19Z2009-05-06T17:25:19Z<p>you might want to look at handlers and handler chains.- I recently had to add a cookie to a given Webservice call and that was how i did it, just created a handler that intercepted the initial call and injected the cookie, you can also manipulate the call headers with a Pivot Handler</p>
http://stackoverflow.com/questions/830691/how-do-i-add-a-soap-header-using-java-jax-ws/835497#8354972Answer by RedGrittyBrick for How do I add a SOAP Header using Java JAX-WSRedGrittyBrick2009-05-07T15:53:43Z2009-05-07T15:53:43Z<p>Thanks Nuno,</p>
<p>Just as soon as I work out how to log in properly to stackoverflow.com I'll do the right thing with your reply.</p>
<p>In the mean time here's the code I ended up with:</p>
<pre><code>FooService service = new FooService();
service.setHandlerResolver(new HandlerResolver() {
public List<Handler> getHandlerChain(PortInfo portInfo) {
List<Handler> handlerList = new ArrayList<Handler>();
handlerList.add(new RGBSOAPHandler());
return handlerList;
}
});
FooPort port = service.getFooPort();
FooPayload payload = new FooPayload();
payload.setHatSize(3);
payload.setAlias("The Hat");
...
port.processRequest(payload);
</code></pre>
<p>and</p>
<pre><code>class RGBSOAPHandler implements SOAPHandler<SOAPMessageContext> {
public Set<QName> getHeaders() {
return new TreeSet();
}
public boolean handleMessage(SOAPMessageContext context) {
Boolean outboundProperty =
(Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);
if (outboundProperty.booleanValue()) {
SOAPMessage message = context.getMessage();
try {
SOAPEnvelope envelope = context.getMessage()
.getSOAPPart().getEnvelope();
SOAPFactory factory = SOAPFactory.newInstance();
String prefix = "X";
String uri = "http://...wsssecurity...";
SOAPElement securityElem =
factory.createElement("Security",prefix,uri);
SOAPElement tokenElem =
factory.createElement("BinarySecurityToken",prefix,uri);
tokenElem.addTextNode("kjh...897=");
securityElem.addChildElement(tokenElem);
SOAPHeader header = envelope.addHeader();
header.addChildElement(securityElem);
} catch (Exception e) {
System.out.println("Exception in handler: " + e);
}
} else {
// inbound
}
return true;
}
public boolean handleFault(SOAPMessageContext context) {
throw new UnsupportedOperationException("Not supported yet.");
}
public void close(MessageContext context) {
//
}
}
</code></pre>
http://stackoverflow.com/questions/830691/how-do-i-add-a-soap-header-using-java-jax-ws/835643#8356430Answer by RedGrittyBrick for How do I add a SOAP Header using Java JAX-WSRedGrittyBrick2009-05-07T16:14:10Z2009-05-07T16:14:10Z<p>Re John Saunders questions in his comment to my original question:</p>
<p>It seems I require 50 reputation points before I can comment. Also stackoverflow's registration of new IDs is broken (pages says something's broken in web site). So I'm replying using "Your answer". </p>
<blockquote>
<blockquote>
<p>Does the WSDL describe the headers? </p>
</blockquote>
</blockquote>
<p>Yes. It also uses SOAP 1.2 bindings that causes some grief. I don't know how good the WSDL is. There is a <em>lot</em> of heavy duty XSD (in separate files). </p>
<blockquote>
<blockquote>
<p>If so, then doesn't JAX-WS generate the code to add them? </p>
</blockquote>
</blockquote>
<p>The only tool I've tried that could digest the WSDL was NetBeans 6.5.1 and I asked it
to generate classes from the WSDL and to insert the web-service client code for me. That code doesn't add SOAP Headers.</p>