Hi All, I am very new to PERL and looking for help. I need write a client that is capable of SSL3 and needs to authenticate to Apache server. I use Crypt::SSLeay that support LWP with SSL3. I do following code without SSLVerifyClient set to reqire at the server and it works fine. use LWP::UserAgent; $ua = new LWP::UserAgent; $req = HTTP::Request->new(GET => 'https://www.bac.com/mypage.html'); $res = $ua->request($req); But as soon as I set "SSLVerifyClient require" at Apache server, the code does not work anymore. I think the problem is that I need a way to tell LWP which client certificate to use to authenticate to server. Can some one help me about how to do it. Thanks, Jin Su
