The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Apache::AwSOAP;

use strict;
use Apache;
use SOAP::Transport::ACTIVEWORKS;

my $server = SOAP::Transport::ACTIVEWORKS::Apache
   -> dispatch_to( '' );


sub handler { $server->handler(@_); }

1;
__END__