Re: why getstore can't work, especially for store xml file on freebsd

2005-05-29 Thread Franklin
I will do further research according to your suggestions. Thank you very much! On 5/26/05, Jay Savage [EMAIL PROTECTED] wrote: On 5/24/05, Franklin [EMAIL PROTECTED] wrote: Hi; I have a small program that uses getstore to fetch a xml webpahe and store it. It is: use strict; use

Re: why getstore can't work, especially for store xml file on freebsd

2005-05-26 Thread Jay Savage
On 5/24/05, Franklin [EMAIL PROTECTED] wrote: Hi; I have a small program that uses getstore to fetch a xml webpahe and store it. It is: use strict; use warnings; use LWP::Simple; my $xmlurl=http://www.sec.gov/Archives/edgar/data/903404/000118143105029692/rrd79736.xml;; my

Re: why getstore can't work, especially for store xml file on freebsd

2005-05-25 Thread John Doe
Am Mittwoch, 25. Mai 2005 03.50 schrieb Franklin: Sometimes it ok. But when you run it many times, say 1,000 times, there is serveral times that it return 200, but the stored file is 0 bytes, titally empty. Sorry, but I don't know (and likely won't know) the reason why some of the written

why getstore can't work, especially for store xml file on freebsd

2005-05-24 Thread Franklin
Hi; I have a small program that uses getstore to fetch a xml webpahe and store it. It is: use strict; use warnings; use LWP::Simple; my $xmlurl=http://www.sec.gov/Archives/edgar/data/903404/000118143105029692/rrd79736.xml;; my $xmlfile=xml.xml; my $status=getstore($xmlurl,$xmlfile);

Re: why getstore can't work, especially for store xml file on freebsd

2005-05-24 Thread John Doe
Am Dienstag, 24. Mai 2005 08.59 schrieb Franklin: Hi; I have a small program that uses getstore to fetch a xml webpahe and store it. It is: use strict; use warnings; use LWP::Simple; my $xmlurl=http://www.sec.gov/Archives/edgar/data/903404/000118143105029692/r rd79736.xml; my

Re: why getstore can't work, especially for store xml file on freebsd

2005-05-24 Thread Franklin
Sometimes it ok. But when you run it many times, say 1,000 times, there is serveral times that it return 200, but the stored file is 0 bytes, titally empty. On 5/25/05, John Doe [EMAIL PROTECTED] wrote: Am Dienstag, 24. Mai 2005 08.59 schrieb Franklin: Hi; I have a small program