Hello everybody!
Is it possible to remove the prefix from the SOAP Message? Basically what I trying to do is make my SOAP Request like this:
<soapenv:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-30345713">
<getBankList xmlns="http://www.uc-council.org/smp/schemas/eanucc">
<getBankListInformation>
<entityCode>
123456789</entityCode>
</getBankListInformation>
</getBankList>
</soapenv:Body>
Right now, the Request looks like this (with prefix):
<soap:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-1">
<ns1:getBankList
xmlns:ns1="http://www.uc-council.org/smp/schemas/eanucc"
xmlns="http://www.uc-council.org/smp/schemas/eanucc">
<ns1:getBankListInformation>
<ns1:entityCode>
123456789</ns1:entityCode>
</ns1:getBankListInformation>
</ns1:getBankList>
Any ideas?
Thanks
JUAN CAMILO
Did you try some intercetor or handler to do this job ?