Thread [HTTP::Async] in Verbindung mit RewriteRule in der .htaccess (30 answers)
Opened by bianca at 2016-03-04 17:02

GwenDragon
 2016-03-06 15:59
#184066 #184066
User since
2005-01-17
14533 Artikel
Admin1
[Homepage]
user image
Kann sein, dass du sowas übersehen hast:
Quote
*******************************************************************
Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client
is deprecated! Please set SSL_verify_mode to SSL_VERIFY_PEER
together with SSL_ca_file|SSL_ca_path for verification.
If you really don't want to verify the certificate and keep the
connection open to Man-In-The-Middle attacks please set
SSL_verify_mode explicitly to SSL_VERIFY_NONE in your application.
*******************************************************************
at C:/strawberry/perl/site/lib/HTTP/Async.pm line 847.

beim Ablauf deines Skripts.

Mei mir hat HTTP::Async auch so genörgelt mit rc 503.
Wegen SSL.

Da muss wohl ein Parameter SSL_.... aus IO::Socket::SSL rein!
So wie hier:
Code: (dl )
1
2
3
4
5
my %ssl_options = (
#verify_hostname => 0,
SSL_verify_mode => 0,
blocking => 0,
);


Mit SSL ist es immer ein so Gesuche und Gemurkese bei Perl wenn eine das nicht tagtäglich macht. Die Doku der Module ist oft unzureichend.
Last edited: 2016-03-06 16:20:19 +0100 (CET)
die Drachin, Gwendolyn


Unterschiedliche Perl-Versionen auf Windows (fast wie perlbrew) • Meine Perl-Artikel

View full thread [HTTP::Async] in Verbindung mit RewriteRule in der .htaccess