bNathan has asked for the wisdom of the Perl Monks concerning the following question:
I have a perl script that used http:Lite to run "copyorders_multiple.pl" on a different server.
I have condensed servers so that the perl script "copyorders_multiple.pl" is now in the same cgi-bin directorty as the perl script that is calling for that script.
Can anyone here help me rewrite the command to not use http::lite
use HTTP::Lite; $http = new HTTP::Lite; $req = $http->request("copyorders_multiple.pl?refID=".&trim($license)) + or die "Unable to get document: $!"; $data = $http->body(); if (length(&trim($data)) > 0)
|
|---|