| RPC-XML-Parser-LibXML documentation | view source | Contained in the RPC-XML-Parser-LibXML distribution. |
RPC::XML::Parser::LibXML - Fast XML-RPC parser with libxml
use RPC::XML::Parser::LibXML;
my $req = parse_rpc_xml(qq{
<methodCall>
<methodName>foo.bar</methodName>
<params>
<param><value><string>Hello, world!</string></value></param>
</params>
</methodCall>
});
# $req is a RPC::XML::request
RPC::XML::Parser::LibXML is fast XML-RPC parser written with XML::LibXML.
Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>
Tatsuhiko Miyagawa <miyagawa@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| RPC-XML-Parser-LibXML documentation | view source | Contained in the RPC-XML-Parser-LibXML distribution. |