NAME

Apache::CPAN::SOAP - soap interface to CPAN::Search::Lite::Query

DESCRIPTION

This module provides some soap-based services to CPAN::Search::Lite::Query in a mod_perl 2 environment. The necessary Apache2 directives are

PerlLoadModule Apache::CPAN::SOAP

CSL_soap_db database_name
CSL_soap_user user_name
CSL_soap_passwd password_for_above_user

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

where the Apache2::SOAP module, included in this distribution, is a mod_perl 2 aware version of Apache::SOAP of the SOAP::Lite distribution. See the CSL_soap script in this distribution for an example of it's use. CSL_soap_passwd is optional if no password is required for the user specified in CSL_soap_user.

SEE ALSO

Apache::CPAN::Search, Apache::CPAN::Query, and CPAN::Search::Lite::Query.