Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^5: Finding XML POST data in HTTP::Server::Simple::CGI

by derby (Abbot)
on Mar 17, 2016 at 10:43 UTC ( [id://1158065]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Finding XML POST data in HTTP::Server::Simple::CGI
in thread Finding XML POST data in HTTP::Server::Simple::CGI

update: just saw the response to update CGI to properly handle application/xml. That may be a better idea than using CGI::Simple -- YMMMV.

Then unfortunately you cannot use HTTP::Server::Simple::CGI out of the box, you'll need to tell it to use something other than CGI. The docs show how you could use CGI::Simple.

my $server = SimpleSrv->new(8080); $server->cgi_class('CGI::Simple'); $server->cgi_init(sub { require CGI::Simple; }); $server->host('127.0.0.1'); $server->run();

-derby

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-26 00:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found