GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Protocol::XMLRPC(3) User Contributed Perl Documentation Protocol::XMLRPC(3)

Protocol::XMLRPC - XML-RPC implementation

    my $method_call = Protocol::XMLRPC::MethodCall->new(name => 'foo.bar');
    $method_call->add_param(1);
    $method_call = Protocol::XMLRPC::MethodCall->parse(...);

    my $method_response = Protocol::XMLRPC::MethodResponse->new;
    $method_response->param(1);
    $method_response = Protocol::XMLRPC::MethodResponse->parse(...);

Protocol::XMLRPC is an XML-RPC protocol implementation. Method parameters types are guessed just like in JSON, but you can pass explicit type if guessing is wrong for you. Read more about parameter creation at Protocol::XMLRPC::ValueFactory.

It differs from other modules because it doesn't provide any mechanism for making actual HTTP requests. This way it can be used either in async or sync modes with your favorite http client or a web framework.

Protocol::XMLRPC::MethodCall
Create and parse XML-RPC request.
Protocol::XMLRPC::MethodResponse
Create and parse XML-RPC response.
Protocol::XMLRPC::Client
A simple client for XML-RPC calls.
Protocol::XMLRPC::Dispatcher
A simple server for XML-RPC calls.

    http://github.com/vti/protocol-xmlrpc/

Jan Harders

Knut Arne Bjørndal

Viacheslav Tykhanovskyi, "vti@cpan.org".

Copyright (C) 2009-2012, Viacheslav Tykhanovskyi.

This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.

Hey! The above document had some coding errors, which are explained below:
Around line 68:
Non-ASCII character seen before =encoding in 'Bjørndal'. Assuming UTF-8
2012-01-18 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.