=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<AnyEvent::XMLRPC> is a Non-Blocking XMLRPC Server. Originally a L<AnyEvent> implementation of L<Frontier>. I<AnyEvent::XMLRPC> is base on elmex's L<AnyEvent::HTTPD>. =head1 FUNCTIONS =head2 new (%options) =cut =head1 AUTHOR BlueT - Matthew Lien - 練喆明, C<< <BlueT at BlueT.org> >> =head1 BUGS Please report any bugs or feature requests to C<bug-anyevent-xmlrpc at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=AnyEvent-XMLRPC>. 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<http://github.com/BlueT/AnyEvent-XMLRPC> =item * RT: CPAN's request tracker L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=AnyEvent-XMLRPC> =item * AnnoCPAN: Annotated CPAN documentation L<http://annocpan.org/dist/AnyEvent-XMLRPC> =item * CPAN Ratings L<http://cpanratings.perl.org/d/AnyEvent-XMLRPC> =item * Search CPAN L<http://search.cpan.org/dist/AnyEvent-XMLRPC> =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