How to manipulate SOAP-HEADER in progress 4gl

Status
Not open for further replies.
M

Meli

Guest
I can generate my own soap-header, the problem is that Progress 4GL added to each element of the header prefix resulting in the following structure:

<SOAP-ENV:Header>
<ns0:user xmlns:ns0="http://someurl.com">usuario</ns0:user>
<ns0:pwd xmlns:ns0="http://someurl.com">password</ns0:pwd>
</SOAP-ENV:Header>


And the structure that i need, without the prefix's and namespace's, is the next:

<SOAP-ENV:Header>
<user>usuario</user>
<pwd>password</pwd>
</SOAP-ENV:Header>


Sorry for my bad english.

Can anyone help me?

Continue reading...
 
Status
Not open for further replies.
Top