Cgi->Cgi call
If it's simply a GET query, you can use LWP::Simple:
code:
use LWP::Simple; $result = get("http://www.foo.com/program.cgi?a=b&c=d"); [/code] If you need to POST, then use the LWP::UserAgent module:code:use LWP::UserAgent; $ua = new LWP::UserAgent; $req = new HTTP::Request POST, "http://www.foo.com/program.cgi", [ 'a' => 'b', 'c' => 'd' ]; $result = $ua->request($req)->as_string; [/code] The LWP (libwww-perl) bundle can be downloaded from http://search.cpan.org/ because it is NOT standard dist. ------------------ -- MIDN 4/C PINYAN, NROTCURPI, US Naval Reserve [This message has been edited by japhy (edited 17 February 2000).]
OOdave posted this at 14:24 — 17th February 2000.
They have: 10 posts
Joined: Feb 2000
Does anybody know how I can get a cgi program on machine A to call another cgi program on machine B (for example).
Machines A nd B are in different file structures (different web sites).
Regards,
Dave
OOdave posted this at 18:06 — 17th February 2000.
They have: 10 posts
Joined: Feb 2000
Thanks for your help.
Regards,
Dave
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.