.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Apache::XMLRPC::Lite 3pm" .TH Apache::XMLRPC::Lite 3pm "2022-10-14" "perl v5.34.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Apache::XMLRPC::Lite \- mod_perl\-based XML\-RPC server with minimum configuration .SH "SYNOPSIS" .IX Header "SYNOPSIS" .IP "httpd.conf (Location), directory-based access" 4 .IX Item "httpd.conf (Location), directory-based access" .Vb 6 \& \& SetHandler perl\-script \& PerlHandler Apache::XMLRPC::Lite \& PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method" \& PerlSetVar options "compress_threshold => 10000" \& .Ve .IP "httpd.conf (Files), file-based access" 4 .IX Item "httpd.conf (Files), file-based access" .Vb 6 \& \& SetHandler perl\-script \& PerlHandler Apache::XMLRPC::Lite \& PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method" \& PerlSetVar options "compress_threshold => 10000" \& .Ve .IP ".htaccess, directory-based access" 4 .IX Item ".htaccess, directory-based access" .Vb 4 \& SetHandler perl\-script \& PerlHandler Apache::XMLRPC::Lite \& PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method" \& PerlSetVar options "compress_threshold => 10000" .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This Apache Perl module provides the ability to add support for XML-RPC protocol with easy configuration (either in .conf or in .htaccess file). This functionality should give you lightweight option for hosting \s-1SOAP\s0 services and greatly simplify configuration aspects. This module inherites functionality from XMLRPC::Transport::HTTP::Apache component of XMLRPC::Lite module. .SH "CONFIGURATION" .IX Header "CONFIGURATION" The module can be placed in , , , directives in main server configuration areas or directly in .htaccess file. .PP All parameters should be quoted and can be separated with commas or spaces for lists (\*(L"a, b, c\*(R") and with 'wide arrows' and commas for hash parameters (\*(L"key1 => value1, key2 => value2\*(R"). .PP All options that you can find in XMLRPC::Transport::HTTP::Apache component are available for configuration. Here is the description of most important ones. .IP "dispatch_to (\s-1LIST\s0)" 4 .IX Item "dispatch_to (LIST)" Specifies path to directory that contains Perl modules you'd like to give access to, or just list of modules (for preloaded modules). .Sp .Vb 1 \& PerlSetVar dispatch_to "/Your/Path/To/Deployed/Modules, Module::Name, Module::method" .Ve .IP "options (\s-1HASH\s0)" 4 .IX Item "options (HASH)" Specifies list of options for your module, for example threshold for compression. Future versions will support more options. See XMLRPC::Transport::HTTP documentation for other options. .Sp .Vb 1 \& PerlSetVar options "compress_threshold => 10000" .Ve .SH "METHODS/SUBROUTINES" .IX Header "METHODS/SUBROUTINES" .SS "server" .IX Subsection "server" .Vb 1 \& my $server = Apache::XMLRPC::Lite\->server(); .Ve .PP Returns the server object. .PP Useful if you need to manipulate the server object from your code. .SS "handle" .IX Subsection "handle" Request handler. Called by apache. .SH "DEPENDENCIES" .IX Header "DEPENDENCIES" .Vb 2 \& XMLRPC::Lite \& mod_perl .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" .Vb 3 \& XMLRPC::Transport::HTTP::Apache for implementation details, \& XMLRPC::Lite for general information, and \& F for .htaccess example .Ve .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (C) 2000\-2001 Paul Kulchenko. All rights reserved. .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. .SH "AUTHOR" .IX Header "AUTHOR" Paul Kulchenko (paulclinger@yahoo.com)