=encoding utf8 =head1 NAME AnyEvent::XMLRPC - Non-Blocking XMLRPC Server. Originally a AnyEvent implementation of Frontier. =head1 VERSION Version 0.05 =cut =head1 SYNOPSIS use AnyEvent::XMLRPC; my $serv = AnyEvent::XMLRPC->new( methods => { 'echo' => \&echo, }, ); or my $serv = AnyEvent::XMLRPC->new( port => 9090, uri => "/RPC2", methods => { 'echo' => \&echo, }, ); and sub echo { @rep = qw(bala bababa); return \@rep; } $serv->run; =head1 DESCRIPTION I is a Non-Blocking XMLRPC Server. Originally a L implementation of L. I is base on elmex's L. =head1 FUNCTIONS =head2 new (%options) =cut =head1 AUTHOR BlueT - Matthew Lien - 練喆明, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc AnyEvent::XMLRPC You can also look for information at: =over 4 =item * Git repository L =item * RT: CPAN's request tracker L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2009 BlueT - Matthew Lien - 練喆明, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut