in reply to cgi and stdin
I bet your receving code is sitting there waiting for more data to come.
Instead of grabbing the data yourself, why not use CGI.pm and change the data you send into xml=<test>post did it go threw</test>? Then your receiving code becomes:
use CGI qw(:standard); print param('xml');
----
I wanted to explore how Perl's closures can be manipulated, and ended up creating an object system by accident.
-- Schemer
:(){ :|:&};:
Note: All code is untested, unless otherwise stated
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: cgi and stdin
by bear0053 (Hermit) on Oct 24, 2003 at 17:30 UTC |