Esempio n. 1
0
 def __init__(self, wsdl):
     """
     @param wsdl: A WSDL.
     @type wsdl: L{wsdl.Definitions}
     """
     self.wsdl = wsdl
     self.multiref = MultiRef()
Esempio n. 2
0
 def __init__(self, wsdl):
     """
     @param wsdl: A wsdl.
     @type wsdl: L{wsdl.Definitions}
     """
     self.wsdl = wsdl
     self.schema = wsdl.schema
     self.options = Options()
     self.parser = Parser()
     self.multiref = MultiRef()
     self.xcodecs = (
         Unmarshaller(self.schema),
         Marshaller(self.schema),
     )