Esempio n. 1
0
 def __init__(self, xml, uri, method='POST', headers=None):
     '''
     @parameter xml: The original XML string that represents
         the call to the RPC
     '''
     httpPostDataRequest.__init__(self)
     self._xml = xml
Esempio n. 2
0
 def __init__(self, url, action, params,
              ns, meth_name, headers=None):
     httpPostDataRequest.__init__(self, url, headers=headers)
     self._action = action
     self._NS = ns
     self._name = meth_name
     self.setParameters(params)
 def __init__(self):
     httpPostDataRequest.__init__(self)
     self._NS = None
     self._name = None
     self._parameters = None
     self._action = None
 def __init__(self):
     httpPostDataRequest.__init__(self)
Esempio n. 5
0
 def __init__(self, original_xmlrpc):
     '''
     @parameter original_xmlrpc: The original XML string that represents the call to the RPC
     '''
     httpPostDataRequest.__init__(self)
     self._original_xmlrpc = original_xmlrpc