in reply to Re: Re: xml response
in thread xml response
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"; }
That will print out every parameter your script was passed. I bet you find an XML document in there somewhere =)
|
|---|