Web Development
soap.txt
Associated article: SOAP: Simplifying Distributed Development
Tags: Web Development
Published source code accompanying the article by Neil Gunton in which he uses the Simple Object Access Protocol (SOAP) to add new facilities to his web site.
SOAP: Simplying Distributed Development
by Neil Gunton
Listing One
#!/usr/local/bin/perl -w
use SOAP::Transport::HTTP;
my $daemon = SOAP::Transport::HTTP::Daemon
-> new (LocalAddr => 'localhost', LocalPort => 81)
-> objects_by_reference(qw(Spelling))
-&...


