pysimplesoap

    0熱度

    1回答

    無法查看調試輸出,當使用跟蹤嘗試,給出了一個錯誤:初始化()得到了一個意想不到的關鍵字參數「追蹤」

    0熱度

    1回答

    我創建了一個簡單的Web服務並將其與pysimplesoap一起使用。然後,我添加SSL的服務(自簽名),並試圖做同樣的,但我得到的錯誤: RuntimeError:在WSDL無法確定服務:SOAP版本:soap11 這是我的代碼: from pysimplesoap.client import SoapClient import base64 import ssl base64string

    1熱度

    1回答

    從未接觸過與SOAP工作過,我現在試圖按照this tutorial,瞭解荷蘭政府土地登記的SOAP服務(kadaster.nl): >>> from SOAPpy import WSDL >>> server = WSDL.Proxy('http://www1.kadaster.nl/1/schemas/kik-inzage/20141101/verzoekTotInformatie-2.1.

    0熱度

    1回答

    我有這樣的方案: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns="tns" xmlns:nam="https://iotchet.ru/namespases"> <soapenv:Header> <tns:RequestHeader> <!

    9熱度

    1回答

    我試圖從荷蘭政府土地登記處(WSDL here)的PySimpleSoap SOAP服務中獲取相關信息。到目前爲止,我設法連接,並請求關於特定屬性與下面的代碼信息: from pysimplesoap.client import SoapClient client = SoapClient(wsdl='http://www1.kadaster.nl/1/schemas/kik-inzage/20

    0熱度

    2回答

    我在Python3中有一個帶有pysimplesoap的肥皂服務器。我不知道,因爲我得到了下一個錯誤。 代碼 from wsgiref.simple_server import make_server application = WSGISOAPHandler(dispatcher) wsgid = make_server('', 8008, application)

    1熱度

    1回答

    當我使用soapUI訪問Web服務時,我得到格式正確的文本。 但是當我使用python代碼時,我得到一個包含單個allBusType鍵中的所有行的字典。 from pysimplesoap.client import SoapClient url = 'http://180.92.171.93:8080/UPSRTCServices/UPSRTCService?wsdl' namespace

    1熱度

    1回答

    這是我的代碼: from pysimplesoap.client import SoapClient,SimpleXMLElement client = SoapClient(wsdl='urlToMyWsdl?wsdl') print client.help("myMethod") client.myMethod(arg0='mystring', arg1='thisCauseMeErro

    3熱度

    1回答

    我試圖訪問使用pysimplesoap和Python 2.7.9 from pysimplesoap.client import SoapClient import base64 username = 'webuser' password = 'webpassword' base64string = base64.encodestring('%s:%s' % (username, pas

    0熱度

    1回答

    我想用下面的Web服務整合: http://demo.eu.yellowfin.com.au/services/AdministrationService?wsdl 不幸的是我還沒有發現有關pysimplesoap的任何信息,可以幫助我弄清楚怎樣才能讓它在我的案件的請求: 我走到這一步,因爲這: from pysimplesoap.client import SoapClient yello