58 # SOAP stuff |
56 # SOAP stuff |
59 # |
57 # |
60 suds_active = False |
58 suds_active = False |
61 |
59 |
62 try: |
60 try: |
63 suds_import = Import ('http://schemas.xmlsoap.org/soap/encoding/', \ |
61 suds_import = suds.xsd.doctor.Import ('http://schemas.xmlsoap.org/soap/encoding/', 'http://schemas.xmlsoap.org/soap/encoding/') |
64 'http://schemas.xmlsoap.org/soap/encoding/') |
62 suds_client = suds.client.Client ('https://zandronum.com/tracker/api/soap/mantisconnect.php?wsdl', plugins=[suds.xsd.doctor.ImportDoctor (suds_import)]) |
65 suds_client = Client ('https://zandronum.com/tracker/api/soap/mantisconnect.php?wsdl', \ |
|
66 plugins=[ImportDoctor (suds_import)]) |
|
67 suds_active = True |
63 suds_active = True |
68 except Exception: |
64 except Exception: |
69 pass |
65 pass |
70 |
66 |
71 btannounce_active = False |
67 btannounce_active = False |