in reply to Re: Re: execute script on remote server
in thread execute script on remote server

Then you need LWP(libwww-perl) (LWP::UserAgent and dependencies, LWP::Simple is usefull). On a good server with Perl, LWP should be installed anyway, a good sys admin will realize that :)

--
http://fruiture.de
  • Comment on Re: Re: Re: execute script on remote server

Replies are listed 'Best First'.
Re: Re: Re: Re: execute script on remote server
by alexiskb (Acolyte) on Aug 30, 2002 at 10:58 UTC
    Thanks! LWP::UserAgent works a treat! you are a star!
    #!D:/Perl/bin/perl.exe require LWP::UserAgent; my $ua = LWP::UserAgent->new(env_proxy => 1, keep_alive => 1, timeout => 30, ); $request = HTTP::Request->new('GET', 'http://foo.co/cgi/remote.cgi'); $response = $ua->request($request);