1SOAP::WSDL::Server::SimUpsleer(3C)ontributed Perl DocumeSnOtAaPt:i:oWnSDL::Server::Simple(3)
2
3
4
6 SOAP::WSDL::Server::Simple - CGI based SOAP server for
7 HTTP::Server::Simple
8
10 package TestServer;
11 use base qw(HTTP::Server::Simple::CGI);
12 use MyServer::TestService::TestPort;
13
14 sub handle_request {
15 my ($self, $cgi) = @_;
16 my $server = MyServer::TestService::TestPort->new({
17 dispatch_to => 'main',
18 transport_class => 'SOAP::WSDL::Server::Simple',
19 });
20 $server->handle($cgi);
21 }
22
23 my $httpd = __PACKAGE__->new();
24 $httpd->run();
25
27 To use SOAP::WSDL::Server::Simple efficiently, you should first create
28 a server interface using wsdl2perl.pl.
29
30 SOAP::WSDL::Server::Simple dispatches all calls to appropriately named
31 methods in the class or object set via "dispatch_to".
32
33 See the generated server class on details.
34
36 Lightweight SOAP server for use with HTTP::Server::Simple, mainly
37 designed for testing purposes. It allows one to set up a simple SOAP
38 server without having to configure CGI or mod_perl stuff.
39
40 SOAP::WSDL::Server::Simple is not recommended for production use.
41
43 handle
44 See synopsis above.
45
47 Copyright 2004-2008 Martin Kutter.
48
49 This file is part of SOAP-WSDL. You may distribute/modify it under the
50 same terms as perl itself
51
53 Martin Kutter <martin.kutter fen-net.de>
54
56 $Rev: 391 $
57 $LastChangedBy: kutterma $
58 $Id: Client.pm 391 2007-11-17 21:56:13Z kutterma $
59 $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Client.pm $
60
61
62
63perl v5.28.0 2018-07-15 SOAP::WSDL::Server::Simple(3)