NAME

Froody::Invoker::Remote - invoker that calls methods remotely

SYNOPSIS

use Froody::Invoker::Remote;

my $remote = Froody::Invoker::Remote
               ->new()
               ->url("http://someserver.com/restendpoint/");

my $method = Froody::Method->new()
                           ->full_name("fred.bar.baz")
                           ->invoker($remote);

my $response = $method->call({ foo => "wibble" });

DESCRIPTION

An Invoker that calls a remote server to get the Froody::Response.

Accessors

url

The URL of the REST endpoint.

source

Returns where this invoker originated

BUGS

None known.

Please report any bugs you find via the CPAN RT system. http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Froody

AUTHOR

Copyright Fotango 2005. All rights reserved.

Please see the main Froody documentation for details of who has worked on this project.

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

SEE ALSO

Froody, Froody::Invoker