tags:

views:

41

answers:

0

I'm using XMLRPC::PurePerl to connect to an xmlrpc server. I keep getting a 500 SSL Negotiation failed when I try to establish a connection. Here's the code snippet:

my $server = new XMLRPC::PurePerl("https://192.168.1.5/server.php");
my $res    = $server->call('TestMessage', $arguments);

This doesn't happen on another server where I'm running the same script.

I'm thinking it has something to do with invalid certificates, but I'm not sure since it's not happening on the other server.

Any thoughts?