logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SOAP::WSDL::Server::CGI - CGI based SOAP server

Author

       Martin Kutter <martin.kutter fen-net.de>

Description

       Lightweight CGI based SOAP server. SOAP::WSDL::Server::CGI does not provide the fancier things of CGI
       handling, like URL parsing, parameter extraction or the like, but provides a basic SOAP server using
       SOAP::WSDL::Server.

Methods

handle
       See synopsis above.

Name

       SOAP::WSDL::Server::CGI - CGI based SOAP server

Repository Information

        $Rev: 391 $
        $LastChangedBy: kutterma $
        $Id: Client.pm 391 2007-11-17 21:56:13Z kutterma $
        $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Client.pm $

perl v5.36.0                                       2022-10-14                       SOAP::WSDL::Server::CGI(3pm)

Synopsis

        use MyServer::TestService::TestPort;
        my $server = MyServer::TestService::TestPort->new({
           dispatch_to => 'main',
           transport_class => 'SOAP::WSDL::Server::CGI',   # optional, default
        });
        $server->handle();

Usage

       To use SOAP::WSDL::Server::CGI efficiently, you should first create a server interface using wsdl2perl.

       SOAP::WSDL::Server dispatches all calls to appropriately named methods in the class or object set via
       "dispatch_to".

       See the generated server class on details.

See Also