Hi, I've implementing a SOAP client/server using nuSOAP.
- I have a server with WSDL set off
- 'document' mode. So I'm using SOAP messaging, not using RPC
- Client is working in 'document' mode also
This is an example of how my client is sending a simple message:
<SOAP-ENV:Body>
<Coco>
<Caca>asasas</Caca>
</Coco>
</SOAP-ENV:Body> |
This is how my server is responding:
<SOAP-ENV:Body>
<ns1:CocoResponse xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/">
<Caca>asasas</Caca>
</ns1:CocoResponse>
</SOAP-ENV:Body> |
Is it possible to alter the above bold parts? I would like to configure the serve to respond like the following:
- nuSOAP pads "response" to the sent root tag
- appends ns1 namesapace
<SOAP-ENV:Body>
<CocoBLA>
<Caca>asasas</Caca>
</CocoBLA>
</SOAP-ENV:Body> |
Is it possible to control this?