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

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);