gpost has asked for the wisdom of the Perl Monks concerning the following question:
When i call remote 'echo' procedure my call reachs to rpc server, it processes parameters and return value. But response doesnt reach to client. Error:
Not a HASH reference at /usr/share/perl5/JSON/RPC/Client.pm line 193
Any idea? Code is here:
use LWP::UserAgent; use JSON::RPC::LWP; use Net::SSL (); use JSON::RPC::Client; $ENV{HTTPS_DEBUG} = 1; # CA cert peer verification $ENV{HTTPS_CA_FILE} = 'ca_file'; $ENV{HTTPS_CA_DIR} = 'ca_dir'; # Client PKCS12 cert support $ENV{HTTPS_PKCS12_FILE} = 'pkcs12 cert'; $ENV{HTTPS_PKCS12_PASSWORD} = 'password'; my $ua = eval { LWP::UserAgent->new() } or die "Could not make user-agent! $@"; $ua->ssl_opts( verify_hostname => 0); print "JSON RPC CONNECTION\n"; my $rpc = JSON::RPC::Client->new( ua => $ua, version => '2.0' ); my $result = $rpc->call( 'https://...', {method=>'echo', params=>['par +am']}); print $result->result, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: JSON::RPC::Client Not a HASH reference Error (the source)
by tye (Sage) on Nov 22, 2012 at 21:45 UTC |