| Hoppy documentation | view source | Contained in the Hoppy distribution. |
Hoppy - Flash XMLSocket Server.
use Hoppy;
use MyService::Auth;
use MyService::Chat;
my $config = {
alias => 'hoppy',
port => 12345,
test => 1, # does not work POE::Filter::Line ( use it as telnet when debug phaze )
};
my $server = Hoppy->new(config => $config);
$server->regist_service(
auth => 'MyService::Auth',
chat => 'MyService::Chat',
);
$server->start;
Hoppy is a perl implementation of Flash XMLSocket Server.
Takeshi Miki <miki@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Hoppy documentation | view source | Contained in the Hoppy distribution. |