I have a perl client which invokes a method from a XML-RPC Server.The
perl client is as follows.
////////////////////////////////////////////////////////////
use Frontier::Client;
my $server_url = ' http://128.252.233.19:9550/RPC2';
my $server = Frontier::Client->new(url => $server_url,
PeerAddr
=> '128.252.233.19:9550',
PeerPort => '9550',
Proto => 'tcp',
debug => 1,
);
eval { $result = $server->call('FindPlate', $plate); };
print $@ if($@);
//////////////////////////////////////////////////////////
I want to write a java client which performs the same work.I know
this can be done using xmlrpc package but unable to figure it out
HOW????any help will be greatly appreciated.