in reply to Re: xml response
in thread xml response

also,
REQUEST_METHOD=POST

Replies are listed 'Best First'.
Re: Re: Re: xml response
by arturo (Vicar) on Jan 25, 2001 at 22:20 UTC

    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 =)