views:

188

answers:

1

I have worked with django for a while but I am new to xml-rpc.
I have two django servers running and 1st needs to call some functions from some modules of 2nd.
I find xml-rpc easiest way to do so but don't want to run a separate server for this only.
What options do I have ?
Can I run django's web-server and xml-rpc server with a single manage runserver command ?

+2  A: 

Easily - we use http://code.djangoproject.com/wiki/XML-RPC to add an xml-rpc server into our django server.

Douglas Leeder
Perfect!! Thanks a lot!
Rohit