Show
Ignore:
Timestamp:
03/12/09 09:11:52 (9 months ago)
Author:
fumiakiy
Message:

Merged sockfish to trunk. "svn merge -r3114:3527 http://code.sixapart.com/svn/movabletype/branches/sockfish/ ."

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/extlib/Apache/SOAP.pm

    r1098 r3531  
    55# and/or modify it under the same terms as Perl itself. 
    66# 
    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 $ 
    88# 
    99# ====================================================================== 
     
    1616 
    1717@ISA = qw(SOAP::Transport::HTTP::Apache); 
    18 $VERSION = eval sprintf("%d.%s", q$Name: release-0_52-public $ =~ /-(\d+)_([\d_]+)/); 
     18use version; $VERSION = qv('0.710.05'); 
    1919 
    2020my $server = __PACKAGE__->new; 
     21 
     22sub server { 
     23    return $server; 
     24} 
    2125 
    2226sub handler { 
     
    6872=head1 DESCRIPTION 
    6973 
    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  
     74This Apache Perl module provides the ability to add support for SOAP (Simple 
     75Object Access Protocol) protocol with easy configuration (either in .conf or 
    7276in .htaccess file). This functionality should give you lightweight option 
    7377for hosting SOAP services and greatly simplify configuration aspects. This 
    7478module inherites functionality from SOAP::Transport::HTTP::Apache component 
    7579of SOAP::Lite module. 
    76   
     80 
    7781=head1 CONFIGURATION 
    7882 
     
    8084directives in main server configuration areas or directly in .htaccess file. 
    8185 
    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  
     86All parameters should be quoted and can be separated with commas or spaces 
     87for lists ("a, b, c") and with 'wide arrows' and commas for hash parameters 
    8488("key1 => value1, key2 => value2"). 
    8589 
     
    9296=item dispatch_to (LIST) 
    9397 
    94 Specifies path to directory that contains Perl modules you'd like to give  
     98Specifies path to directory that contains Perl modules you'd like to give 
    9599access to, or just list of modules (for preloaded modules). 
    96100 
     
    99103=item options (HASH) 
    100104 
    101 Specifies list of options for your module, for example threshold for  
    102 compression. Future versions will support more options. See  
     105Specifies list of options for your module, for example threshold for 
     106compression. Future versions will support more options. See 
    103107SOAP::Transport::HTTP documentation for other options. 
    104108 
     
    106110 
    107111=back 
     112 
     113=head1 METHODS/SUBROUTINES 
     114 
     115=head2 server 
     116 
     117 my $server = Apache::XMLRPC::Lite->server(); 
     118 
     119Returns the server object. 
     120 
     121Useful if you need to manipulate the server object from your code. 
     122 
     123=head2 handle 
     124 
     125Request handler. Called by apache. 
    108126 
    109127=head1 DEPENDENCIES