in reply to LWP UserAgent - Sending Client Certificate connect to remote host

I tried that change got the same error

<code > ssl_opts => { verify_hostname => 0, SSL_ca_file => 'cert.crt', }; </code>

anything else you can think of that I can look at to narrow down what the problem is ? Thanks!

  • Comment on Re: LWP UserAgent - Sending Client Certificate connect to remote host

Replies are listed 'Best First'.
Re^2: LWP UserAgent - Sending Client Certificate connect to remote host
by vsespb (Chaplain) on May 13, 2013 at 20:56 UTC
    That's weird, could you pls reply and paste your code again (after you added ssl_opts) ?
      I have 5.8.8 perl installed on our machine. Thanks
      #!/usr/bin/perl -l use strict; use warnings; use HTTP::Headers; use HTTP::Request; use LWP::UserAgent; my $UPDATE_SERVER = "https://something.com"; my $ua = LWP::UserAgent->new; ssl_opts => { verify_hostname => 0, SSL_ca_file => 'ops-cert-O.crt', }; $ua->timeout(10); #$ua->agent(""); my $req = HTTP::Request->new( GET => $UPDATE_SERVER ); my $res = $ua->request($req); print "header ----" . $res->headers_as_string; print "response ---" . $res->as_string;
        I mean code like this:
        #!/usr/bin/perl -l use strict; use warnings; use HTTP::Headers; use HTTP::Request; use LWP::UserAgent; my $UPDATE_SERVER = "https://something.com"; my $ua = LWP::UserAgent->new( ssl_opts => { verify_hostname => 0, SSL_ca_file => 'ops-cert-O.crt', }); $ua->timeout(10); #$ua->agent(""); my $req = HTTP::Request->new( GET => $UPDATE_SERVER ); my $res = $ua->request($req); print "header ----" . $res->headers_as_string; print "response ---" . $res->as_string;
        Try my $ua = LWP::UserAgent->new( ssl_opts => { verify_hostname => 0, SSL_ca_file => 'ops-cert-O.crt', } );