scandalz.net
 
 
 
BETA (Google AJAX Search)

Free SOAP Services

Simple Object Access Protocol (SOAP), it's a great way to take the operating systems out of the problem and focus on code.

This is the main module I use to deploy web services. I keep all my soap modules in /virtualhosts/soap.scandalz.net/perllib and they are automatically handled.
snip from httpd.conf
<VirtualHost 64.52.18.6:80>
    ServerAdmin root.net
    DocumentRoot /virtualhosts/soap.scandalz.net/htdocs/
    ServerName soap.scandalz.net
    ErrorLog /virtualhosts/soap.scandalz.net/logs/error_log
    CustomLog /virtualhosts/soap.scandalz.net/logs/access_log combined
    <Perl>
        push (@INC,"/virtualhosts/soap.scandalz.net/perllib/");
    </Perl>
    <Location />
                SetHandler perl-script
                PerlHandler scandalz::soap::Apache
        </Location>
</VirtualHost>


package scandalz::soap::Apache;

use SOAP::Transport::HTTP;
use Apache::DBI;

my $server = SOAP::Transport::HTTP::Apache
        ->dispatch_to('/virtualhosts/soap.scandalz.net/perllib/');

sub handler {
        $server->handler(@_);
}
1;

2008 scandalz.net
"I'd love to go out with you, but I have to stay home and see if I snore."
CountryUS
IP Address38.107.191.90
User AgentCCBot/1.0 (+http://www.commoncrawl.org/bot.html)