My current test python script does something like:
#!/usr/bin/env python
import sys
data = sys.stdin.read()
myjson = json.loads(data)
The problem is that even if this worked in some case, on others it seems to block, probably at the read().
For some other reasons I am forced to use tomcat to the cgi scripts, not sure if this matters anyway.