diomedea has asked for the wisdom of the Perl Monks concerning the following question:
I get the file i expect back in its entirety, however if i do thismy $status = getstore("http://www.myurl.coml?data" , "file.txt");
I only get the first few lines of the file back. Im i making some simple schoolboy error? If not, is this likely to be an issue with lwp or more likely a server side issue (should I use user agent to get more details?) your advice would be appreciated!my $uri = "http://www.myurl.coml?data"; my $file = "file.txt"; my $status = getstore($uri, $file);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: using variables in lwp::simple
by elsiddik (Scribe) on Sep 25, 2007 at 11:47 UTC | |
|
Re: using variables in lwp::simple
by Gangabass (Vicar) on Sep 25, 2007 at 12:15 UTC | |
|
Re: using variables in lwp::simple
by graff (Chancellor) on Sep 26, 2007 at 04:33 UTC | |
|
Re: using variables in lwp::simple
by diomedea (Sexton) on Sep 26, 2007 at 09:19 UTC |