1' -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
2
3' SOAP server. requires SOAP.Lite COM object (regsvr32 Lite.dll)
4' Doesn't require web server
5' Path to Perl modules can be specified
6' as '/PATH/TO/MODULES' or as 'drive:/PATH/TO/MODULES'
7
8call CreateObject("SOAP.Lite") _
9 .server("SOAP::Transport::HTTP::Daemon", _
10   "LocalAddr", "localhost", _
11   "LocalPort", 80) _
12 .dispatch_to("/Your/Path/To/Deployed/Modules") _
13 .options(CreateObject("SOAP.Lite").hash("compress_threshold", 10000)) _
14 .handle
15