Re: Interop between C# and Python

2007-04-30 Thread Joshua J. Kugler
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:

Re: Interop between C# and Python

2007-04-28 Thread Ravi Teja
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 code from

Interop between C# and Python

2007-04-27 Thread urielka
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

Re: Interop between C# and Python

2007-04-27 Thread Ravi Teja
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(): return hello

Re: Interop between C# and Python

2007-04-27 Thread urielka
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 --