Help for this page

Select Code to Download


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