The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache2::DocServer - mod_perl 2 soap server for soap-enhanced perldoc

DESCRIPTION

This module provides a mod_perl 2 soap-based service to Pod::Perldocs. The necessary Apache2 directives are

 PerlLoadModule Apache2::DocServer

 DocServer_db database_name
 DocServer_user user_name
 DocServer_passwd password_for_above_user
 DocServer_pod_root "/Path/to/pod/root"

 <Location /docserver>
   SetHandler perl-script
   PerlResponseHandler Apache2::SOAP
   PerlSetVar dispatch_to "D:/Perl/site/lib/Apache2, Apache2::DocServer"
 </Location>

where Apache::SOAP is included in version 0.69 and above of the SOAP::Lite distribution. See the perldocs script in this distribution for an example of it's use.

SEE ALSO

Pod::Perldocs.