in reply to LWP https proxy trouble

Can't connect to kuix.de:443 (10051)

This means your computer cannot connect to the other computer.

Have you checked that your browser can connect to the website? Maybe there are proxy settings that you need to tell your Perl script?

Update: I now realize that you're already aware that you need a proxy. For SSL, you need to tell the SSL C libraries to use a proxy. The best approach is to set up the environment before these libraries are loaded. This is easiest done by setting up the environment before your Perl script is started. As an alternative, you can set up the environment in a BEGIN block before the SSL libraries are initialized:

BEGIN { $ENV{ https_proxy } = "http://my.proxy.example"; }; ... use LWP::UserAgent;

Replies are listed 'Best First'.
Re^2: LWP https proxy trouble
by Pazitiff (Novice) on Apr 11, 2013 at 12:15 UTC
    How about that my proxy avaliable via just a HTTP, and I am using verify_hostname => '0' or  $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
Re^2: LWP https proxy trouble
by Pazitiff (Novice) on Apr 11, 2013 at 11:55 UTC
    Yes, when i get https://kuix.de from my browser with the same proxy settings all OK. When I get content of http://google.com from script all OK, but when via HTTPS (as example https://kuix.de) is not OK