I have this piece of code to access web service:

use strict; use warnings; use SOAP::Lite +trace => qw(all); my $lite = new SOAP::Lite(uri => 'http://org.jboss.ws/samples/rpcstyle +', proxy => 'https://it.abc.com:8443/jbossws-samples-rpcstyle?wsdl'); print $lite->getKey()->result;

And got this trace, please help, it sounded to me like a problem on the client side (what should I do to resolve this no cipher problem. I do have private and public key generated on the server side, but no idea what to do on the perl side):

SOAP::Transport::new: () SOAP::Serializer::new: () SOAP::Deserializer::new: () SOAP::Parser::new: () SOAP::Lite::new: () SOAP::Transport::HTTP::Client::new: () SOAP::Lite::call: () SOAP::Serializer::envelope: () SOAP::Serializer::envelope: getKey SOAP::Data::new: () SOAP::Data::new: () SOAP::Data::new: () SOAP::Data::new: () SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x1b98 +73c) SOAP::Transport::HTTP::Client::send_receive: POST https://it.abc.com:8 +443/ jbossws-samples-rpcstyle?wsdl Accept: text/xml Accept: multipart/* Content-Length: 462 Content-Type: text/xml; charset=utf-8 SOAPAction: "http://org.jboss.ws/samples/rpcstyle#getKey" <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="ht +tp://www.w 3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap. +org/soap/e ncoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" x +mlns:xsd=" http://www.w3.org/1999/XMLSchema" SOAP-ENV:encodingStyle="http://schem +as.xmlsoap .org/soap/encoding/"><SOAP-ENV:Body><namesp1:getKey xmlns:namesp1="htt +p://org.jb oss.ws/samples/rpcstyle"/></SOAP-ENV:Body></SOAP-ENV:Envelope> SOAP::Transport::HTTP::Client::send_receive: HTTP::Response=HASH(0x1ca +8e70) SOAP::Transport::HTTP::Client::send_receive: 500 (Internal Server Erro +r) SSL neg otiation failed: error:1406D0CB:SSL routines:GET_SERVER_HELLO:peer err +or no ciph er Content-Type: text/plain Client-Date: Fri, 08 Sep 2006 01:26:21 GMT Client-Warning: Internal response 500 SSL negotiation failed: error:1406D0CB:SSL routines:GET_SERVER_HEL +LO:peer er ror no cipher SOAP::Deserializer::deserialize: () SOAP::Parser::decode: () 500 SSL negotiation failed: error:1406D0CB:SSL routines:GET_SERVER_HEL +LO:peer er ror no cipher at d.pl line 9 SOAP::Lite::DESTROY: () SOAP::Deserializer::DESTROY: () SOAP::Serializer::DESTROY: () SOAP::Data::DESTROY: () SOAP::Data::DESTROY: () SOAP::Data::DESTROY: () SOAP::Data::DESTROY: () SOAP::Transport::DESTROY: () SOAP::Transport::HTTP::Client::DESTROY: () SOAP::Parser::DESTROY: ()

In reply to SSL negotiation no cipher problem by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.