Hi all,

I'm trying to figure out how I can resolve a namespace prefix from a 
received soap message in gsoap. For example take the soap message 
below, if I whant to resolve the prefix "b" that lies in the received 
soap message below how would I go about doing this in gsoap? I have 
tried to use soap->namespaces and soap->namespace_local with no 
success, I only get the namespaces on my own device not the sender's 
namespaces. Any help in this matter would be much appriciated.

Best Regards Mike

<SOAP-ENV:Envelope 
xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"; 
xmlns:b="http://someuri";> 

<SOAP-ENV:Header>
....
</SOAP-ENV:Header>
<SOAPENV:Body>
.....
<element>b:sometext</element>
.....
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Reply via email to