in reply to Mechanize https proxy not working

I tried it, and it came back 200; however, it mentioned that it was an unknown domain and that www.redhat.com wasn't on that server.

Replies are listed 'Best First'.
Re^2: Mechanize https proxy not working
by vishnu787 (Initiate) on Mar 10, 2010 at 02:17 UTC

    The same code works with any http link, but doesn't work with an https link

    Tried with another https link and the same result

    Error GETing https://www.guardiananytime.com/: Bad Request at test.pl line 9
      1) turn on debugging 2) do you know if your proxy supports https?

        1)with the same proxy settings wget and elinks are working good

        2)can you please let me know how to turn debugging on...Thanks
      I don't know what is causing your problem. I'd use a different module to get the https link. Something like IO::All::HTTPS
      #!/usr/bin/perl use strict; use warnings; use IO::All; my $content < io('https://www.guardiananytime.com'); print $content, "\n";
        comes back with *Can't find a class for method 'https' at test1.pl line 7*