in reply to Re: xml responsein thread xml response
REQUEST_METHOD=POST [download]
POSTed content is read in through STDIN ... of course, CGI.pm handles this for you ... Try the following snippet:
use CGI qw(:param); foreach ( param ) { print "<p>$_ : ", param($_), "</p><hr>\n"; } [download]
That will print out every parameter your script was passed. I bet you find an XML document in there somewhere =)