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

NAME

OpenFrame::Slot::Dispatch::SOAP - Dispatch applications remotely via SOAP

SYNOPSIS

  my $config = OpenFrame::Config->new();
  $config->setKey(
     'SLOTS', [ {
       dispatch => 'Local',
       name     => 'OpenFrame::Slot::Dispatch',
       config   => {
         installed_applications => [ {
           name       => 'hangman',
           uri        => '/',
           dispatch   => 'SOAP',
           namespace  => 'Hangman::Application',
           config     => { words => "../hangman/words.txt" },
           soap_uri   => 'http://localhost:8010/',
           soap_proxy => 'http://localhost:8010/',
         },],
       },
     },
   ],
  );

DESCRIPTION

This module is an OpenFrame slot that dispatches applications that use OpenFrame::Slot::Dispatch remotely via SOAP.

There are two ways of defining the SOAP endpoint, either use the "soap_uri" and "soap_proxy" options or use a "service" options to point to a WSDL location.

SEE ALSO

OpenFrame::Slot::Dispatch

AUTHOR

James A. Duncan <jduncan@fotango.com>

COPYRIGHT

Copyright (C) 2001, Fotango Ltd.

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.