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

NAME

SOAP::Transport::ActiveWorks::Client - Client side ActiveWorks support for SOAP/Perl

SYNOPSIS

    use SOAP::Transport::ActiveWorks::Client;

    my $soap_on_aw = SOAP::Transport::ActiveWorks::Client->new();

    my $soap_response = $soap_on_aw->send_receive (
                        $self->{_soap_host},
                        $self->{_soap_port},
                        $self->{_soap_broker},
                        $self->{_soap_client_group},
                        $self->{_soap_class},
                        $self->{_soap_method_uri},
                        $method_name,
                        $soap_request
    );

DESCRIPTION

SOAP::Transport::ActiveWorks::Client provides a client class with the single method "send_receive" to deliver a SOAP formatted request to a SOAP adapter connected to an ActiveWorks broker.

The ActiveWorks SOAP client is the direct analog to the HTTP Client. The primary difference is that the "endpoint" is split into fields specifying the "broker" and "client_group" to connect to. These attributes may be set when the client object is instantiated or at any time afterwards. Not specifiying a values defaults to the settings in SOAP::Transport::ActiveWorks::Defs.

DEPENDENCIES

 Aw::Client
 SOAP-0.28
 SOAP::Defs
 SOAP::Transport::ActiveWorks::Defs;

AUTHOR

Daniel Yacob, yacob@rcn.com

SEE ALSO

perl(1). SOAP(3). SOAP::Transport::ActiveWorks::Server(3).