On Friday 27 April 2007 17:09, urielka wrote:
> i need a easy way to write a Python Service(be it SOAP or JSONRPC or
> whatever) but i need to easily access it from C#,i created a web
> service in ZSI(which is really easy) like this:
You might want to take a look at Thrift too:
http://developers.
On Apr 27, 8:25 pm, urielka <[EMAIL PROTECTED]> wrote:
> thx i will try this.
>
> i am also trying XML-RPC,i wrote a basic generator(in python) that
> genrate a Interface from the XML-RPC service module,but maybe with
> soaplib i don`t need this if i use wsdl as Visual Studio can generate
> the cod
thx i will try this.
i am also trying XML-RPC,i wrote a basic generator(in python) that
genrate a Interface from the XML-RPC service module,but maybe with
soaplib i don`t need this if i use wsdl as Visual Studio can generate
the code from the wsdl
--
http://mail.python.org/mailman/listinfo/pytho
On Apr 27, 6:09 pm, urielka <[EMAIL PROTECTED]> wrote:
> i need a easy way to write a Python Service(be it SOAP or JSONRPC or
> whatever) but i need to easily access it from C#,i created a web
> service in ZSI(which is really easy) like this:
>
> from ZSI import dispatch
>
> def hello():
> retu
i need a easy way to write a Python Service(be it SOAP or JSONRPC or
whatever) but i need to easily access it from C#,i created a web
service in ZSI(which is really easy) like this:
from ZSI import dispatch
def hello():
return "hello"
dispatch.AsServer(port=8080)
simple and easy but how i a