in reply to JSON::RPC::Server with SSL
my $res = $client->call( $uri, $obj ); if($res){ if ($res->is_error) { print "Error : ", $res->error_message; } else { print $res->result; } } else { print $client->status_line; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: JSON::RPC::Server with SSL
by mwb613 (Beadle) on Mar 11, 2014 at 19:45 UTC | |
by hazylife (Monk) on Mar 11, 2014 at 20:31 UTC | |
by mwb613 (Beadle) on Mar 11, 2014 at 21:15 UTC | |
by zentara (Cardinal) on Mar 12, 2014 at 10:03 UTC | |
by Anonymous Monk on Mar 12, 2014 at 10:53 UTC |