bigup401 has asked for the wisdom of the Perl Monks concerning the following question:

when i try to post request to url

i get this error

SSLget()_next_proto negotiated could not be located in the dynamic link library SSLEAY32.dll

use HTTP::Request::Common qw(POST); use LWP::UserAgent; $ua = new LWP::UserAgent(keep_alive=>1); $responde = HTTP::Request->new(POST => "https://url.com"); $responde->content_type("application/x-www-form-urlencoded"); $resp = $ua->request($responde);

Replies are listed 'Best First'.
Re: SSL ERROR
by Anonymous Monk on May 05, 2015 at 14:58 UTC

      there are many bt different path this happened when i re-installed my os( win 7) bt i never got this error before. and i was using xampp for longtime. so i cant understand where it came from

        there are many bt different path this happened when i re-installed my os( win 7) bt i never got this error before. and i was using xampp for longtime. so i cant understand where it came from

        ok then bigup401

Re: SSL ERROR
by GotToBTru (Prior) on May 05, 2015 at 14:30 UTC