Changeset 3531 for trunk/extlib/Apache/SOAP.pm
- Timestamp:
- 03/12/09 09:11:52 (9 months ago)
- Files:
-
- 1 modified
-
trunk/extlib/Apache/SOAP.pm (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/extlib/Apache/SOAP.pm
r1098 r3531 5 5 # and/or modify it under the same terms as Perl itself. 6 6 # 7 # $Id: SOAP.pm ,v 1.3 2001/08/11 19:09:57 paulk Exp$7 # $Id: SOAP.pm 249 2008-05-05 20:35:05Z kutterma $ 8 8 # 9 9 # ====================================================================== … … 16 16 17 17 @ISA = qw(SOAP::Transport::HTTP::Apache); 18 $VERSION = eval sprintf("%d.%s", q$Name: release-0_52-public $ =~ /-(\d+)_([\d_]+)/);18 use version; $VERSION = qv('0.710.05'); 19 19 20 20 my $server = __PACKAGE__->new; 21 22 sub server { 23 return $server; 24 } 21 25 22 26 sub handler { … … 68 72 =head1 DESCRIPTION 69 73 70 This Apache Perl module provides the ability to add support for SOAP (Simple 71 Object Access Protocol) protocol with easy configuration (either in .conf or 74 This Apache Perl module provides the ability to add support for SOAP (Simple 75 Object Access Protocol) protocol with easy configuration (either in .conf or 72 76 in .htaccess file). This functionality should give you lightweight option 73 77 for hosting SOAP services and greatly simplify configuration aspects. This 74 78 module inherites functionality from SOAP::Transport::HTTP::Apache component 75 79 of SOAP::Lite module. 76 80 77 81 =head1 CONFIGURATION 78 82 … … 80 84 directives in main server configuration areas or directly in .htaccess file. 81 85 82 All parameters should be quoted and can be separated with commas or spaces 83 for lists ("a, b, c") and with 'wide arrows' and commas for hash parameters 86 All parameters should be quoted and can be separated with commas or spaces 87 for lists ("a, b, c") and with 'wide arrows' and commas for hash parameters 84 88 ("key1 => value1, key2 => value2"). 85 89 … … 92 96 =item dispatch_to (LIST) 93 97 94 Specifies path to directory that contains Perl modules you'd like to give 98 Specifies path to directory that contains Perl modules you'd like to give 95 99 access to, or just list of modules (for preloaded modules). 96 100 … … 99 103 =item options (HASH) 100 104 101 Specifies list of options for your module, for example threshold for 102 compression. Future versions will support more options. See 105 Specifies list of options for your module, for example threshold for 106 compression. Future versions will support more options. See 103 107 SOAP::Transport::HTTP documentation for other options. 104 108 … … 106 110 107 111 =back 112 113 =head1 METHODS/SUBROUTINES 114 115 =head2 server 116 117 my $server = Apache::XMLRPC::Lite->server(); 118 119 Returns the server object. 120 121 Useful if you need to manipulate the server object from your code. 122 123 =head2 handle 124 125 Request handler. Called by apache. 108 126 109 127 =head1 DEPENDENCIES
