[BangPypers] web services

Anand Balachandran Pillai abpillai at gmail.com
Thu Oct 1 10:28:30 CEST 2009


On Thu, Oct 1, 2009 at 1:39 PM, sudhakar s <ssquery at gmail.com> wrote:

> I was trying SOAP web services.How to construct .
>
>
>
>  Use SOAPpy. Here is the straight dope without any WSDL etc.

from SOAPPy import ThreadingSOAPServer

server = ThreadingSOAPServer(('0.0.0.0', 8888))
server.registerFunction(check)
server.registerFunction(dummy)
server.serve_forever()

Now your functions "check" and "dummy" are available to a SOAP client
at localhost:8888 port.

Please don't CC non-relevant lists in your posts. X-posting
is a virtue rarely, only if you know what you are doing.


>
>>
>> --
>> The hidden harmony is better than the obvious!!
>> _______________________________________________
>> BangPypers mailing list
>> BangPypers at python.org
>> http://mail.python.org/mailman/listinfo/bangpypers
>>
>
>
>
> --
> With Regards,
> S Sudhakar.
>
> _______________________________________________
> BangPypers mailing list
> BangPypers at python.org
> http://mail.python.org/mailman/listinfo/bangpypers
>
>


-- 
--Anand
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/bangpypers/attachments/20091001/c0c49076/attachment.htm>


More information about the BangPypers mailing list