The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
### Dispatch based xmlrpc server ###
package TestApp;

use strict;
use Catalyst qw[Server Server::XMLRPC];
use base qw[Catalyst];

our $VERSION = '0.01';

### XXX make config configurable, so we can test the xmlrpc 
### specific config settings
TestApp->config( 
);

TestApp->setup;

1;