Interop between C# and Python

Ravi Teja webraviteja at gmail.com
Sat Apr 28 16:42:38 EDT 2007


On Apr 27, 8:25 pm, urielka <uriel.k... at gmail.com> 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 the wsdl

Typed remoting mechanisms (SOAP, CORBA, ICE etc) tend to be less work
with statically typed languages like C#. Untyped remoting mechanisms
are more convenient to work with dynamic languages (XML-RPC, JSON-RPC
etc). When combining them, typed one are more convenient because
working with typed systems is more convenient in dynamic languages
than it is to work with untyped systems in typed languages. Of course,
if the project is really small, none of this really matters. Pick your
poison.

Ravi Teja.




More information about the Python-list mailing list