How to Add Custom SOAP Headers to a Web Service Request in Axis2?

The Apache Axis2 client API provides you a convenient mechanism to talk to a Web service. You can simply pass the payload you need to send and Axis2 will take care of the rest. But what if you are interested in more than what is being sent in the body of the SOAP message? What if you want to add custom headers to the request?
Date: Sat, 2nd Dec, 2006
Level:
Reads: 13346 Comments: 0 | Login or register to post comments
Eran Chinthaka
Software Engineer
WSO2 Inc.
chinthaka's picture
Let's see how you can add your own headers to the request using Axis2 client API. Let's use the following header as an example. <myNs:MyHeader xmlns:mvNS="http://www.CustomHeaders.com">This is some vital information<myNS:MyHeader> Adding Custom Headers Using Client API Step 1: First you need to get hold of the ServiceClient API. If you are not using generated stubs, then you should use ServiceClient to call the method. But if you are using generated stubs, using Axis2 WSDL2Code mechansim, call _getServiceClient() you can get hold of the ServiceClient. ServiceClient serviceClient = XXXStub._getServiceClient(); Step 2: There are couple of methods in ServiceClient API that you can use to add SOAP headers. The easiest one is to use addStringHeader(QName headerName, String headerText) method. serviceClient.addStringHeader(new QName("http://www.CustomHeaders.com", "MyHeader", "myNs"), "This is some vital information"); If you want more control than the above, for instance if you want to add a whole XML fragment inside the SOAP header, then you might want to consider using either addHeader(OMElement header) or addHeader(SOAPHeaderBlock header) OMFactory omFactory = OMAbstractFactory.getOMFactory();OMElement omElement = omFactory.createOMElement(new QName("http://www.CustomHeaders.com", "MyHeader", "myNs"), null);omElement.setText("This is some vital information");// add whatever you want to omElement hereclient.addHeader(omElement); Applies To: Apache Axis2/Java v1.1 For More Information: AXIOM - Fast and Lightweight Object Model for XML
Hot Topic
Hot
Topic

Google Gadgets are a nice way to develop user interfaces for distributed services. The fact that they can be hosted anywhere over a network, not necessarily in the very portal server they eventually run in makes them re-usable and allows users to quickly...

Mini Banners
WSO2Con 2010
Latest Webinar
In this webinar we'll share the range of concerns we've heard from the industry, and survey some of the new and sometimes subtle types of lock-in associated with cloud technologies.
Wednesday, 8 September, 10.00 AM (PDT)