.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" 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 .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . 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::SOAP 3" .TH Apache::SOAP 3 2023-07-25 "perl v5.38.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::SOAP \- mod_perl\-based SOAP 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::SOAP \& 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::SOAP \& 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::SOAP \& 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 SOAP (Simple Object Access Protocol) protocol with easy configuration (either in .conf or in .htaccess file). This functionality should give you lightweight option for hosting SOAP services and greatly simplify configuration aspects. This module inherits functionality from SOAP::Transport::HTTP::Apache component of SOAP::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 ("a, b, c") and with 'wide arrows' and commas for hash parameters ("key1 => value1, key2 => value2"). .PP All options that you can find in SOAP::Transport::HTTP::Apache component are available for configuration. Here is the description of most important ones. .IP "dispatch_to (LIST)" 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 (HASH)" 4 .IX Item "options (HASH)" Specifies list of options for your module, for example threshold for compression. Future versions will support more options. See SOAP::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 \& SOAP::Lite \& mod_perl .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" .Vb 3 \& SOAP::Transport::HTTP::Apache for implementation details, \& SOAP::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)