Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have generated stub for a webserivce using apache axis2 and i want to add custom soap header to the request i want soap header to look like this

<soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><ns1:soapHeader xmlns:ns1="urn:oasis:names:core" soapenv:mustUnderstand="0"><ns1:Username>myuser</ns1:Username><ns1:Password>mypass</ns1:Password></ns1:soapHeader></soapenv:Header>

and im writing this code

org.apache.axiom.soap.SOAPEnvelope env = null;    
org.apache.axiom.om.OMFactory omFactory = org.apache.axiom.om.OMAbstractFactory.getOMFactory();



                                    org.apache.axiom.om.OMElement omElement = omFactory.createOMElement(new javax.xml.namespace.QName("urn:oasis:names:core", "soapHeader", "ns1"));
                                    org.apache.axiom.om.OMElement omElement1 = omFactory.createOMElement(new javax.xml.namespace.QName("urn:oasis:names:core", "Username", "ns1"));
                                    org.apache.axiom.om.OMElement omElement2 = omFactory.createOMElement(new javax.xml.namespace.QName("urn:oasis:names:core", "Password", "ns1"));

                                    omElement.addChild(omElement1);
                                    omElement.addChild(omElement2);

                                    omElement1.setText("myuser");
                                    omElement2.setText("mypass");

                                    addHeader(omElement,env);

but i am not getting required soap header, this is what im getting

 <soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><ns1:soapHeader xmlns:ns1="urn:oasis:names:core" soapenv:mustUnderstand="0"><ns1:Username>myuser</ns1:Username></ns1:soapHeader></soapenv:Header>

as u can see password is missing, i wanna know what im doing wrong

share|improve this question

2 Answers

http://www.keith-chapman.org/2008/10/axis2-adding-custom-soap-headers-to.html explains how to do that.

Also looking at your code, seems like you are trying do add a custom header for authentication. But that is not the standard way. You can do that with WS-Security username/password.

Thanks...

share|improve this answer

Partendo da un wsdl in cui era definito la parte di autenticazione:

<xsd:complexType name="AuthenticationIn">
    <xsd:sequence>
     <xsd:element name="userName" type="xsd:string"/>
     <xsd:element name="password" type="xsd:string"/>
    </xsd:sequence>
   </xsd:complexType>

gli stubs generati da axis2 prevedevano di instanziare una classe in cui si settano

userName e password.

Settando correttamente tutti i valori username e password nelle varie classi,

l'xml in uscita dal client troncava miseramente la password generando un'header errato

o quanto meno non valido per il server :

<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><ns1:AuthenticationIn xmlns:ns1="urn:Interface" soapenv:mustUnderstand="0"><ns1:userName>USER</ns1:userName></ns1:AuthenticationIn></soapenv:Header>

invece di :

<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><ns1:AuthenticationIn xmlns:ns1="urn:Interface" soapenv:mustUnderstand="0"><ns1:userName>USER</ns1:userName><urn:password>PWD</urn:password></ns1:AuthenticationIn></soapenv:Header>

La soluzione รจ stata quella di creare l'header a mano con i comandi :

  ServiceClient client = stub._getServiceClient();
  SOAP11Factory factory = new SOAP11Factory();
  OMNamespace SecurityElementNamespace = factory.createOMNamespace("urn:Interface", "ns1");

  SOAPHeaderBlockImpl block = new SOAP11HeaderBlockImpl("AuthenticationIn", SecurityElementNamespace, factory);
  OMElement usernameIn = factory.createOMElement("userName", SecurityElementNamespace);
  usernameIn.setText(user);
  block.addChild(usernameIn);

  OMElement passwordIn = factory.createOMElement("password", SecurityElementNamespace);
  passwordIn.setText(pwd);
  block.addChild(passwordIn);
  client.addHeader(block);

Ciao, Stacanovista, seguitemi su : http://informaticssolvedproblems.blogspot.it/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.