How do I add a SOAP Header using Java JAX-WS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:15:49Z http://stackoverflow.com/feeds/question/830691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/830691/how-do-i-add-a-soap-header-using-java-jax-ws 3 How do I add a SOAP Header using Java JAX-WS RedGrittyBrick 2009-05-06T17:07:29Z 2009-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>&lt;?xml ... ?&gt; &lt;S:Envelope xmlns:S="http://...soap-envelope"&gt; &lt;S:Body&gt; &lt;!-- payload --&gt; &lt;/S:Body&gt; &lt;/S:Envelope&gt; </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>&lt;S:Header&gt; &lt;X:Security xmlns:X="http://...wsssecurity...&gt; &lt;X:BinarySecurityToken&gt;kjh...897=&lt;/X:BinarySecurityToken&gt; &lt;/X:Security&gt; &lt;/S:Header&gt; </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#830772 0 Answer by Nuno Furtado for How do I add a SOAP Header using Java JAX-WS Nuno Furtado 2009-05-06T17:25:19Z 2009-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#835497 2 Answer by RedGrittyBrick for How do I add a SOAP Header using Java JAX-WS RedGrittyBrick 2009-05-07T15:53:43Z 2009-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&lt;Handler&gt; getHandlerChain(PortInfo portInfo) { List&lt;Handler&gt; handlerList = new ArrayList&lt;Handler&gt;(); 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&lt;SOAPMessageContext&gt; { public Set&lt;QName&gt; 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#835643 0 Answer by RedGrittyBrick for How do I add a SOAP Header using Java JAX-WS RedGrittyBrick 2009-05-07T16:14:10Z 2009-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>