On Thursday 11 August 2005 19:03, [EMAIL PROTECTED] wrote:
> Why not using directly SOAP ?
>
> A minimalistic 'Hello world' client looks like :
>
>    from SOAPpy import SOAPProxy
>
>    server= SOAPProxy("http://localhost:8080";)
>    print server.Hello("world")
>
> and the server side like :
>
>     from SOAPpy import SOAPServer
>
>     def Hello(name):
>       print "Wishing "+name+" hello !"
>       return "Hello "+name
>
>     server= SOAPServer(("localhost",8080))
>     server.registerFunction(Hello)
>     server.serve_forever()
>
> Difficult to make it simpler isn't it ?

Thanks to you too and the same question for you. :-)
How well will this server work with clients written in other 
languages/toolkits without the need of installing additional things? for 
example, does Delphi have a Soap implementation? IIRC Qt doesn't offer one 
for free.

Thanks,
Michael
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to