Trying to specify a custom soap header. Not sure how the SoapEnvelope.headerOut propery is to be populated.
My code so far?
String soapAction = servi
headerOut is an Element[] that you need to build.
Something like this
Element usernameElement = new Element().createElement(OASIS_SECURITY_XSD_URL, "Username");
usernameElement.addChild(Node.TEXT, username);
Element passwordElement = new Element().createElement(OASIS_SECURITY_XSD_URL, "Password");
passwordElement.addChild(Node.TEXT, password);
and then add it to an array..