Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: CGI.pm problems

by sevensven (Pilgrim)
on Dec 14, 2001 at 01:16 UTC ( [id://131766]=note: print w/replies, xml ) Need Help??


in reply to CGI.pm problems

Yes, you can get CGI.pm to work for you.

You just need to unescape the xml that you receive from the post, like this :

#!/usr/bin/perl use CGI qw/unescape/; use strict; my $cgi = new CGI; print $cgi->header; my $xml = $cgi->param('xml'); print unescape($xml);

And your previous, own rolled, rigthly merlin steaming version ;^) would work if you had not forgoten the proverbial print "Content-type: text/html\n\n"; before trying to output the https error codes.

-- sevensven or nana korobi, ya oki

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://131766]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-19 04:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found