I am new to cherrypy and couldn't find proper doc abt the topic in question.
How can I handle POST body request in Cherrypy ?
NOTE : I have used mod-python. In it req.read() directly gives content of in-body post content, sent like -
curl -X POST -d @test.xml "http://127.0.0.1:80/generate/gen.py"
Here test.xml is file containing xml content.
I want to use cherrypy only ... please don't suggest to use mod-python :P