I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-03-17 17:37:19-07 by noah in response to 10189
Re: https?
No, /WebService is the virtual URL created by mod_perl; browsing to that URL will trigger SOAP::WSDL::Server::Mod_Perl2's response handler.

SOAP::WSDL needs to be installed somewhere that mod_perl can find it; this means it needs to be in a path in the @INC that mod_perl uses. As a matter of general principle, I'd suggest not installing it in your DocumentRoot. Note that @INC can be modified; see http://perl.apache.org/docs/2.0/user/intro/start_fast.html#Configuration for a quick start on mod_perl. I'd suggest familiarizing yourself with mod_perl's basic operation a bit. The basics aren't too hard, and learning them will save you some headaches later. Coding under mod_perl is *almost* like writing a script, but you need to be a little careful since the perl interpreter doesn't exist between requests.

--n
Direct Responses: 10214 | 10220 | Write a response