I am subclassing MessagePlugin like this:
class FixText(MessagePlugin): def sending(self, context): context.envelope = "something else"
I've run the Python debugger and traced through my code and my plugin is getting called. However, when the SOAP request hits the wire it contains the original text, not my new text. Is there a workaround for this or is this a known issue?