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 2010-05-20 02:27:18.785887-07 by jft
SOAP::WSDL web service installation?
Hello, I'm new to web services, and I want to create a web service with perl using WSDL. From what I've read, SOAP::WSDL is the best choice. My question is somehow general, how can I use and install this web service, is there any kind of tutorial where I can find this information? I have a valid WSDL file, and I successfully created the bindings using wsdl2perl.pl but now what?! Thanks for your help, Jorge Teixeira
Direct Responses: 12711 | Write a response
Posted on 2010-05-20 21:11:22.321749-07 by noah in response to 12709
Re: SOAP::WSDL web service installation?
There are two main options for creating a SOAP service using SOAP WSDL:

1) SOAP::WSDL::Server::CGI
See example/server/hello_simple.pl in the SOAP::WSDL source

2) SOAP::WSDL::Server::Mod_Perl2
Useful only if you'll be running your SOAP server under an Apache 2.x instance using mod_perl. See the perldoc for SOAP::WSDL::Server::Mod_Perl2 for details on use.

Noah
Direct Responses: Write a response