What's the simplest way to set up a JSON-RPC server in python and make it secure? I'm very interested Pyjamas for python/javascript - but the documentation doesn't explain how to implement security with the JSON-RPC.
Asked
Active
Viewed 996 times
1 Answers
2
I've played with pyjamas a little and am currently implementing json-rpc with django.
Have you considered using ssl to secure the site. Short of implementing your own (basic) encryption routine, its probably the best way forward.

Gevious
- 3,214
- 3
- 21
- 42
-
Do you mean to distribute SSL client certs to all the clients? – Ignacio Vazquez-Abrams Apr 14 '11 at 17:17