The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Example::Server::HelloWorld::HelloWorldSoap;
use strict;
use warnings;
use Class::Std::Fast::Storable;
use Scalar::Util qw(blessed);
use base qw(SOAP::WSDL::Client::Base);

# only load if it hasn't been loaded before
require Example::Typemaps::HelloWorld
    if not Example::Typemaps::HelloWorld->can('get_class');

my %transport_class_of :ATTR(:name<transport_class> :default<SOAP::WSDL::Server::CGI>);
my %transport_of :ATTR(:name<transport> :default<()>);
my %dispatch_to :ATTR(:name<dispatch_to>);

my $action_map_ref = {
    'urn:HelloWorld#sayHello' => 'sayHello',

};

sub START {
    my ($self, $ident, $arg_ref) = @_;
    eval "require $transport_class_of{ $ident }"
        or die "Cannot load transport class $transport_class_of{ $ident }: $@";
    $transport_of{ $ident } = $transport_class_of{ $ident }->new({
        action_map_ref => $action_map_ref,
        class_resolver => 'Example::Typemaps::HelloWorld',
        dispatch_to => $dispatch_to{ $ident },
    });
}

sub handle {
    $transport_of{ ${ $_[0] } }->handle(@_[1..$#_]);
}

1;



__END__

=pod

=head1 NAME

Example::Server::HelloWorld::HelloWorldSoap - SOAP Server Class for the HelloWorld Web Service

=head1 SYNOPSIS

 use Example::Server::HelloWorld::HelloWorldSoap;
 my $server = Example::Server::HelloWorld::HelloWorldSoap->new({
    dispatch_to => 'My::Handler::Class',
    transport_class => 'SOAP::WSDL::Server::CGI',   # optional, default
 });
 $server->handle();


=head1 DESCRIPTION

SOAP Server handler for the HelloWorld web service
located at http://localhost:81/soap-wsdl-test/helloworld.pl.

=head1 SERVICE HelloWorld



=head2 Port HelloWorldSoap



=head1 METHODS

=head2 General methods

=head3 new

Constructor.

The C<dispatch_to> argument is mandatory. It must be a class or object
implementing the SOAP Service methods listed below.

=head2 SOAP Service methods

Your dispatch_to class has to implement the following methods:

The examples below serve as copy-and-paste prototypes to use in your
class.


=head3 sayHello



 sub sayHello {
    my ($self, $body, $header) = @_;
    # body is a Example::Elements::sayHello object
    # header is a ??? object - sorry, POD support not implemented yet
    # do something with body and header...

    return  Example::Elements::sayHelloResponse->new( {
    sayHelloResult =>  $some_value, # string
  },
 );

 }



=head1 AUTHOR

Generated by SOAP::WSDL on Mon May  6 11:41:23 2013

=cut