|
NAMEXML::Compile::SOAP::Daemon::CGI - CGI based serverINHERITANCEXML::Compile::SOAP::Daemon::CGI is a XML::Compile::SOAP::Daemon SYNOPSIS#### have a look in the examples directory! use XML::Compile::SOAP::Daemon::CGI; my $daemon = XML::Compile::SOAP::Daemon::CGI->new; # initialize definitions from WSDL my $wsdl = XML::Compile::WSDL11->new(...); $wsdl->importDefinitions(...); # more schemas $daemon->operationsFromWSDL($wsdl, callbacks => ...); # per connected client my $query = CGI->new; $daemon->runCgiRequest(query => $query); DESCRIPTIONThis module handles the exchange of SOAP messages via Apache, using mod_perl and the popular Perl module CGI. Have a look at the examples/ directory, contained in the "XML-Compile-SOAP-Daemon" distribution.This abstraction level of the object (code in this pm file) is not concerned with parsing or composing XML, but only worries about the HTTP transport specifics of SOAP messages. Extends "DESCRIPTION" in XML::Compile::SOAP::Daemon. METHODSExtends "METHODS" in XML::Compile::SOAP::Daemon.ConstructorsExtends "Constructors" in XML::Compile::SOAP::Daemon.
AttributesExtends "Attributes" in XML::Compile::SOAP::Daemon.
Running the serverExtends "Running the server" in XML::Compile::SOAP::Daemon.
PreparationsExtends "Preparations" in XML::Compile::SOAP::Daemon.
HelpersExtends "Helpers" in XML::Compile::SOAP::Daemon.
DETAILSExtends "DETAILS" in XML::Compile::SOAP::Daemon.Operation handlersExtends "Operation handlers" in XML::Compile::SOAP::Daemon.Returning errorsExtends "Returning errors" in XML::Compile::SOAP::Daemon.How to use the CGI moduleThe code and documentation for this module was contributed by Patrick Powell in December 2010. Both have seen major changes since.Go to the examples/mod_perl/ directory which is included in the distribution of this module, XML::Compile::SOAP::Daemon. There you find a README describing the process. Configuring ApacheYour virtual host may need something like this:Options Indexes FollowSymLinks MultiViews PerlHandler ModPerl::Registry PerlOptions -ParseHeaders AddHandler perl-script .cgi Options +ExecCGI Order allow,deny Allow from all SEE ALSOThis module is part of XML-Compile-SOAP-Daemon distribution version 3.14, built on May 11, 2018. Website: http://perl.overmeer.net/CPAN/LICENSECopyrights 2007-2018 by [Mark Overmeer <markov@cpan.org>]. For other contributors see ChangeLog.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/
Visit the GSP FreeBSD Man Page Interface. |