I have an application that is sending XML to the server in the form of a POST. The actual HTTP request (filtered) looks like this:
POST / HTTP/1.1
content-type: text/xml
...
<TopNode>This is a test</TopNode>
What I need is to extract the raw "<TopNode>This is a test</TopNode>". The HTTP_POST_VARS variable does not hold this information and I can't find any other global variables that might hold it. Anybody have an idea on this?