2

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.

MKaras
  • 2,063
  • 2
  • 20
  • 35

1 Answers1

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