I'm trying to put together an interface for an application of mine using this
HttpServlet module.
But I can't seem to find anything in the docs that actually explains how to use
this module. Specifically, setting up and configuring the interface to listen
to certain ports, define roles, and establish an authentication method (BASIC).
As I understand it, I can create an object:
my $server = Servlet::Http::HttpServlet->new();
and I guess I can create the same server with specific options via:
my $server = Servlet::Http::HttpServlet->($config);
where $config is a hash reference of options to impliment. But in order for
this to actually "do" anything I need to know what the Keys are that I need to
specify.
Does anyone have any experience with these modules?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>