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
Then build as you would any setup.rbified package.
···
On Wed, 8 Dec 2004 23:07:36 +0900, Massimiliano Mirra - bard <mmirra@libero.removethis.it> wrote:
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: