1Apache::XMLRPC::Lite(3)User Contributed Perl DocumentatioAnpache::XMLRPC::Lite(3)
2
3
4
6 Apache::XMLRPC::Lite - mod_perl-based XML-RPC server with minimum con‐
7 figuration
8
10 httpd.conf (Location), directory-based access
11 <Location /mod_xmlrpc>
12 SetHandler perl-script
13 PerlHandler Apache::XMLRPC::Lite
14 PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method"
15 PerlSetVar options "compress_threshold => 10000"
16 </Location>
17
18 httpd.conf (Files), file-based access
19 <FilesMatch "\.xmlrpc$">
20 SetHandler perl-script
21 PerlHandler Apache::XMLRPC::Lite
22 PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method"
23 PerlSetVar options "compress_threshold => 10000"
24 </FilesMatch>
25
26 .htaccess, directory-based access
27 SetHandler perl-script
28 PerlHandler Apache::XMLRPC::Lite
29 PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method"
30 PerlSetVar options "compress_threshold => 10000"
31
33 This Apache Perl module provides the ability to add support for XML-RPC
34 protocol with easy configuration (either in .conf or in .htaccess
35 file). This functionality should give you lightweight option for host‐
36 ing SOAP services and greatly simplify configuration aspects. This mod‐
37 ule inherites functionality from XMLRPC::Transport::HTTP::Apache compo‐
38 nent of XMLRPC::Lite module.
39
41 The module can be placed in <Location>, <Directory>, <Files>, <Files‐
42 Match> directives in main server configuration areas or directly in
43 .htaccess file.
44
45 All parameters should be quoted and can be separated with commas or
46 spaces for lists ("a, b, c") and with 'wide arrows' and commas for hash
47 parameters ("key1 => value1, key2 => value2").
48
49 All options that you can find in XMLRPC::Transport::HTTP::Apache compo‐
50 nent are available for configuration. Here is the description of most
51 important ones.
52
53 dispatch_to (LIST)
54 Specifies path to directory that contains Perl modules you'd like
55 to give access to, or just list of modules (for preloaded modules).
56
57 PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method"
58
59 options (HASH)
60 Specifies list of options for your module, for example threshold
61 for compression. Future versions will support more options. See
62 XMLRPC::Transport::HTTP documentation for other options.
63
64 PerlSetVar options "compress_threshold => 10000"
65
67 XMLRPC::Lite
68 mod_perl
69
71 XMLRPC::Transport::HTTP::Apache for implementation details,
72 XMLRPC::Lite for general information, and
73 F<examples/server/mod_xmlrpc.htaccess> for .htaccess example
74
76 Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved.
77
78 This library is free software; you can redistribute it and/or modify it
79 under the same terms as Perl itself.
80
82 Paul Kulchenko (paulclinger@yahoo.com)
83
84
85
86perl v5.8.8 2006-06-15 Apache::XMLRPC::Lite(3)