1# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
2
3# put this file into mod_soap directory (for tests) or anywhere you want
4
5SetHandler perl-script
6PerlHandler Apache::SOAP
7
8# you may specify almost ANY method of SOAP::Transport::HTTP::Apache here
9# see documentation for more information
10
11# if more than one, parameters should be quoted and can be separated with commas 
12PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, \
13                        Module::Name, Module::method"
14
15# or with spaces
16PerlSetVar objects_by_reference "My::PersistentIterator My::SessionIterator My::Chat"
17
18# if you want to use module from BOTH mod_perl and mod_soap 
19# you should use either static or mixed dispatching
20# PerlSetVar dispatch_to "My::Examples My::Parameters My::PersistentIterator My::SessionIterator My::PingPong"
21
22# for methods that accept hashes, specify parameters as "key1 => value1, key2 => value2"
23PerlSetVar options "compress_threshold => 10000"
24