Add a namespace prefix to the root element - Jdev
I need to add a namespace prefix to the root element while passing this complex element in the SOAP Header as shown below before calling a webservice. I am able to see the namespace prefix to the sub-elements but not for the root element.
<wsa1:OIMUser mustUnderstand="0" xmlns:wsa1="http://xmlns.oracle.com/OIM/provisioning">
<wsa1:OIMUserId>soa_admin</wsa1:OIMUserId>
<wsa1:OIMUserPassword>Welcome#123</wsa1:OIMUserPassword>
</wsa1:OIMUser>
Here, I am not able to see the wsa1: namespace highlited for the root element OIMUser.
Detailed Explaination:
Steps I have done in my project in JDev are:
1. Created a BPEL process.