コード例 #1
0
ファイル: wrappers.py プロジェクト: sherlockor/HIS-for-Test
def build_app(service_list, tns, name):

    app = Application(service_list, tns, name)
    app.transport = 'http://schemas.xmlsoap.org/soap/http'
    app.update_pref_map("Hippity", "Hippity")
    app.update_pref_map("Hoppity","Hoppity")
    app.update_pref_map("MissingRPCPortService","MissingRPCPortService")
    app.update_pref_map("SinglePortNS","SinglePortNS")
    app.update_pref_map("DoublePort","DoublePort")


    return app
コード例 #2
0
ファイル: metaconfigure.py プロジェクト: jonathanfine/soaplib
def consturct_soaplib_application(service_list, tns):
    soap_app = Application(service_list, tns)
    soap_app.transport = "http://schemas.xmlsoap.org/soap/http"
    return soap_app
コード例 #3
0
def consturct_soaplib_application(service_list, tns):
    soap_app = Application(service_list, tns)
    soap_app.transport = "http://schemas.xmlsoap.org/soap/http"
    return soap_app
コード例 #4
0
def build_app(service_list, tns, name):

    app = Application(service_list, tns, name)
    app.transport = 'http://schemas.xmlsoap.org/soap/http'
    return app
コード例 #5
0
def build_app(service_list, tns, name):

    app = Application(service_list, tns, name)
    app.transport = 'http://schemas.xmlsoap.org/soap/http'
    return app