Search code examples
c#pythonweb-serviceswsdlsoaplib

Having issues using python webservice in c#


I have written a python webservice using saoplib

my python web service code :

import soaplib
from soaplib.core.service import rpc, DefinitionBase,soap
from soaplib.core.model.primitive import String, Integer
from soaplib.core.server import wsgi
from soaplib.core.model.clazz import Array


class HelloWorldService(DefinitionBase):
    @soap(String,_returns=String)
    def say_hello(self,name):
        f=open("/tmp/f.txt","w+")
        f.write(name)
        f.close()
        return name

if __name__=='__main__':
    try:
        from wsgiref.simple_server import make_server
        soap_application = soaplib.core.Application([HelloWorldService], 'tns')
        wsgi_application = wsgi.Application(soap_application)
        server = make_server('46.36.119.230', 7789, wsgi_application)
        server.serve_forever()
    except ImportError:
        print "Error: example server code requires Python >= 2.5"

I want to call it from my c# application.So how do i call it say_hello method?


Solution

  • First add your webservice to C# using this address

    http://46.36.119.230:7789/?wsdl
    

    Then you can call the say_hello method this way:

    ServiceReference1.ApplicationClient h = new ApplicationClient();
    say_hello ss = new say_hello();
    ss.name = "saeed";
    say_helloResponse rs = h.say_hello(ss);
    MessageBox.Show(rs.say_helloResult);