You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Sam Seaver <sa...@hotmail.com> on 2003/04/24 23:11:45 UTC

unresolved handler in httpd.conf (Apache::SOAP)

Dear all,

Am using:

Httpd-2.0.45
Perl_mod 1.99_08
SOAP::Lite 0.55

All have compiled sucessfully.

This is my httpd.conf section:

LoadModule perl_module modules/mod_perl.so
PerlModule Apache2

<FilesMatch "\.soap$">
    SetHandler perl-script
    PerlHandler Apache::SOAP
    PerlSetVar dispatch_to "/path/to/soap"
    PerlSetVar options "compress_threshold => 10000"
</FilesMatch>

But when I try to connect, i get this error:

[error] failed to resolve handler `Apache::SOAP'

I have a feeling this may be to do with the inability of SOAP to find 
Apache, but I have Apache/Soap.pm in my @INC..??

help pls?

Sam
"JC Rules"



_________________________________________________________________
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=features/featuredemail


Re: unresolved handler in httpd.conf (Apache::SOAP)

Posted by Perrin Harkins <pe...@elem.com>.
Sam Seaver wrote:
> [error] failed to resolve handler `Apache::SOAP'
>
> I have a feeling this may be to do with the inability of SOAP to find 
> Apache, but I have Apache/Soap.pm in my @INC..??

Either it's not in @INC, or the permissions are not right on some 
directory.  Add this to your httpd.conf and look at the error message:

<Perl>
use Apache::SOAP;
</Perl>

- Perrin