rpc-xml
rpc-xml copied to clipboard
A Perl implementation of the XML-RPC specification
``` #!/usr/bin/env perl use 5.014; use RPC::XML; use RPC::XML::Client; my $url = 'https://wordpress.com/xmlrpc.php'; my $client = RPC::XML::Client->new($url); $client->request->accept_decodable; print '"Accept-Encoding" set to ' . $client->request->header('Accept-Encoding') . "\n"; my $request =...
Hello, I'm maintaining an XML::RPC server application running on RPC::XML version 0.73. I try to update to 0.82 but my function names are no longer accepted by RPC::XML. The error...