Hi,
I couldn't find a way to submit a new ticket, so I'm sending this to the mailing list.
I needed to change the XML message in a SOAP call, so I followed the documentation and tried to do that by using the "sending" method in a plugin class derived from the MessagePlugin (documentation says that the sending method "Provides the plugin with the opportunity to inspect/modify the message text before it is sent").
However, I only got it working after changing line 634 in client.py by replacing:
plugins.message.sending(envelope=soapenv)
with:
ctx = plugins.message.sending(envelope=soapenv) soapenv = ctx.envelope
Regards, -- Renato