Thank you for your answer
|
closed as not a real question by KillianDS, casperOne♦ Aug 23 '12 at 12:32
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Depends on what protocol you want to use. XML-RPC is simplest: make an instance of SimpleXMLRPCServer.SimpleXMLRPCServer (using the module in the standard Python library), record callables it needs to make available with its register_function method, then call its Other protocols, as usual, are more complicated -- you'll need to download and install some suitable third-party library and use it. For example, for SOAP, you could use soaplib (there are also other third-party libraries for writing SOAP servers in Python). |
|||||||
|
|
Actually, the simplest I can think of is to use Twisted 'Perspective Broker' which was designed specifically for that. If you only need Python methods available remotely, no need to sweat it with protocol stuff; from the Twisted Documentation:
I will now include a full client and server (for original author, see this): Server:
Client
That's it. The Client calls the remote In conclusion, if you want to simply call methods (and not deal with XML or protocol stuff) go, and use Twisted's Perspective Broker. |
||||
|
|