GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SOAP::WSDL::Server::Simple(3) User Contributed Perl Documentation SOAP::WSDL::Server::Simple(3)

SOAP::WSDL::Server::Simple - CGI based SOAP server for HTTP::Server::Simple

 package TestServer;
 use base qw(HTTP::Server::Simple::CGI);
 use MyServer::TestService::TestPort;

 sub handle_request {
     my ($self, $cgi) = @_;
     my $server = MyServer::TestService::TestPort->new({
         dispatch_to => 'main',
         transport_class => 'SOAP::WSDL::Server::Simple',
     });
     $server->handle($cgi);
 }

 my $httpd = __PACKAGE__->new();
 $httpd->run();

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

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

See the generated server class on details.

Lightweight SOAP server for use with HTTP::Server::Simple, mainly designed for testing purposes. It allows one to set up a simple SOAP server without having to configure CGI or mod_perl stuff.

SOAP::WSDL::Server::Simple is not recommended for production use.

See synopsis above.

Copyright 2004-2008 Martin Kutter.

This file is part of SOAP-WSDL. You may distribute/modify it under the same terms as perl itself

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

 $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 $
2020-01-20 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.