using HTTP authentication

2004-08-03 Thread Andrew Gaffney
I want to use HTTP authentication with Apache 2.x for a project I'm working on. I only need 1 user to be able to access the whole site (similar to a consumer router's web interface). What do I need to do to setup it up in Apache and how do I access the login information from my Perl scripts? --

Re: Help needed in extracting html over HTTTPS protocol.

2004-08-03 Thread T. Raymond
Anas, I think it is doing that because it is the secure protocol. Presumably, I think that means that others can't tap into it unless they have a username and password or some other authorized access. If you're trying to extract from your own site, then I think you need to download the html into

Help needed in extracting html over HTTTPS protocol.

2004-08-03 Thread Anas Perwez
Hi All, My requirement is to extract html from any site ( HTTPS) and then parse it for selective contents I am able to connect to HTTP sites but when it comes to HTTPS , it is throwing errors. Code snippet for HTTP --- my $res; use LWP::Request; require LWP::UserAgent; require Io