I am trying to send a response from Spyne to a soap client that resembles:
I am returning the following:
<?xml version="1.0" encoding="UTF-8"?>
<senv:Envelope xmlns:tns="urn:..:.." xmlns:senv="http://schemas.xmlsoap.org/soap/envelope/">
<senv:Body>
<tns:modifyResponse status="foo">
<tns:a>
<tns:b attr="bar"/>
</tns:a>
</tns:modifyResponse>
</senv:Body>
</senv:Envelope>
…
[View More]The issue is the client requires a namespace declaration within the <tns:modifyResponse status="foo">.
I suspect it results from the body being removed from the the rest of the response and processed out of context.
Any ideas on how I can force the location of the declaration down, or in this case duplicate it?
Thanks,
jlc
[View Less]