Ever thought it would be nice to call objects located anywhere in the world, without bothering with static IPs, DNS, Apache, CGI, NAT, PAT, gateways, authentication, and so on?
Jabber-RPC lets you do this. On the callee side you have:
require "jabber/rpc"
class TestAgent < Jabber::RPC::BasicAgent def exposed_commands ["alive?"] end
> Ever thought it would be nice to call objects located anywhere in the > world, without bothering with static IPs, DNS, Apache, CGI, NAT, PAT, > gateways, authentication, and so on?
> Jabber-RPC lets you do this. On the callee side you have:
> require "jabber/rpc"
> class TestAgent < Jabber::RPC::BasicAgent > def exposed_commands > ["alive?"] > end
> Ever thought it would be nice to call objects located anywhere in the > world, without bothering with static IPs, DNS, Apache, CGI, NAT, PAT, > gateways, authentication, and so on?
> Jabber-RPC lets you do this. On the callee side you have: