On Thu, Oct 1, 2009 at 1:39 PM, sudhakar s <[email protected]> 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
>> [email protected]
>> http://mail.python.org/mailman/listinfo/bangpypers
>>
>
>
>
> --
> With Regards,
> S Sudhakar.
>
> _______________________________________________
> BangPypers mailing list
> [email protected]
> http://mail.python.org/mailman/listinfo/bangpypers
>
>


-- 
--Anand
_______________________________________________
BangPypers mailing list
[email protected]
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to