- or download this
# I usually molest $raw_request_string a little here...
my $request = HTTP::Request->parse($raw_request_string);
- or download this
my $soap = SOAP::Transport::HTTP::Server
-> new(YOUR_SOAP_SPECIFIC_ARGS)
-> dispatch_to(YOUR_CLASS);
- or download this
# and I usually munge headers/SOAPaction here...
$soap->request($request);
- or download this
$soap->handle();
- or download this
my $response = $soap->response;