Package fedex :: Module base_service :: Class GeneralSudsPlugin
[hide private]
[frames] | no frames]

Class GeneralSudsPlugin

source code

   suds.plugin.Plugin --+    
                        |    
suds.plugin.MessagePlugin --+
                            |
                           GeneralSudsPlugin

Instance Methods [hide private]
 
__init__(self, **kwargs) source code
 
marshalled(self, context)
Suds will send the specified soap envelope.
source code
 
sending(self, context)
Suds will send the specified soap envelope.
source code
 
received(self, context)
Suds has received the specified reply.
source code

Inherited from suds.plugin.MessagePlugin: parsed, unmarshalled

Method Details [hide private]

marshalled(self, context)

source code 

Suds will send the specified soap envelope. Provides the plugin with the opportunity to inspect/modify the envelope Document before it is sent.

Parameters:
  • context - The send context. The envelope is the envelope docuemnt.
Overrides: suds.plugin.MessagePlugin.marshalled
(inherited documentation)

sending(self, context)

source code 

Suds will send the specified soap envelope. Provides the plugin with the opportunity to inspect/modify the message text it is sent.

Parameters:
  • context - The send context. The envelope is the envelope text.
Overrides: suds.plugin.MessagePlugin.sending
(inherited documentation)

received(self, context)

source code 

Suds has received the specified reply. Provides the plugin with the opportunity to inspect/modify the received XML text before it is SAX parsed.

Parameters:
  • context - The reply context. The reply is the raw text.
Overrides: suds.plugin.MessagePlugin.received
(inherited documentation)