Perl & Windows NT

2001-11-09 Thread Gael PEGLIASCO
Hello, I actually use Perl on Unix. I've got to install it on Windows NT :( Really bad news. What are the solutions to do it ? Is there another option to Active State solution ? Thanks for your reply, With kind regards. Gael Pegliasco. -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to open a http or https url, as if it was a file

2001-08-08 Thread Gael PEGLIASCO
Mel Matsuoka wrote: > Use the LWP::Simple module. Thanks, I'm going to try this module. Do you know WebFs::FileCopy ? http://search.cpan.org/doc/BZAJAC/WebFS-FileCopy-1.04/lib/WebFS/FileCopy.pm With kind regards, Gael, [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: How to open a http or https url, as if it was a file

2001-08-08 Thread Gael PEGLIASCO
Camilo Gonzalez wrote: > > Why not open the file itself? In other words, try: > open (FILE, 'somefile.html') or die "Can't open HTML document $!"; This is not possible because the file I want to open is located on another web server. For example, opening a file located by an url can be usefull t

How to open a http or https url, as if it was a file

2001-08-08 Thread Gael PEGLIASCO
Hello, I'm looking for a way to open a http url, in order to retrieve parts of its content and display it in a cgi script. I'd like to do things like : open (FILE, 'http://www.myurl.com'); or open (FILE, 'https://www.myurl.com'); Do you know how I could do that ? Thanks for your reply, With