Path: usenet.cise.ufl.edu!huron.eel.ufl.edu!usenet.eel.ufl.edu!news.ultranet.com!newsswitch.lcs.mit.edu!news-out.internetmci.com!newsfeed.internetmci.com!128.223.220.30!logbridge.uoregon.edu!nntp.teleport.com!news.teleport.com!not-for-mail
From: Dominique Dumont <[email protected]>
Newsgroups: comp.lang.perl.announce,comp.lang.perl.modules
Subject: ANNOUNCE: RPC::Simple v0.4 (alpha)
Followup-To: comp.lang.perl.modules
Date: 25 Jan 1998 15:30:44 GMT
Organization: Teleport - Portland's Public Access (503) 220-1016
Lines: 113
Sender: [email protected]
Approved: [email protected] (comp.lang.perl.announce)
Message-ID: <[email protected]>
NNTP-Posting-Host: gadget.cscaper.com
X-Disclaimer: The "Approved" header verifies header information for article transmission and does not imply approval of content.
Xref: usenet.cise.ufl.edu comp.lang.perl.announce:61 comp.lang.perl.modules:1320


Hello

Here's the first official announcement for RPC::Simple. Although previous
unstable versions were posted on CPAN, I hope this one is good enough
for a public annoucement,

I suggest the following line for the module list in section 5 :

RPC::Simple   adpO  Simple OO async remote procedure calls  DDUMONT


Here's the README file from the distribtion.


This is the README file for RPC::Simple::* , a bunch of Perl
classes to perform simple remote procedure calls in an object oriented
way.

This module uses Tk's control loop on the local side and a IO::Select
based control loop on the server side.

To use this set of classes, the user will have to create a set of twin
classes. One will run on the local side, the other on the remote side.
Each twin class will inherit a RPC::Simple::Any[Local|Remote] class.

When done you'll be able to invoke a method from the remote class on the
local object and vice versa. (like $localObj->remotePrint).

When calling the remote method from the local side, you may pass a code
reference which
will be stored by the RPC::Simple objects. This code ref will be called
back when the remote function is over. Note that the remote calls are not
blocking, all feedback from the remote side is performed through
asynchronous call-back.

Note that simultaneous remote calls on the same object (or on
different objects) are supported, you'll get the relevant call-back
as usual.

On the other hand (or side ...), the callback mechanism does not work
when calling a method from the remote side to the local side.
Only a simple method call (albeit with optionnal parameters) is allowed
from the remote side.

Note that the attribute of the twin objects are not automagically
copied or updated on the other side. You will have to explicitely
pass the necessary data from one side to the other if you need it.

See the man pages or the test.pl script to get further details.
Note you have install Tk to be able to perform the tests.

About security: When running the server, only a localhost (127.0.0.1)
connection is allowed by default. You may call a server method to allow
connections from other IP (either numeric or name) addresses. Once this is
done, the decalred address is considered as a "buddy" and the data
sent to the server are not checked for security (i.e. the Taint mechanism
is defeated). Consider yourself warned.

Note that if security is a real problem for you, you should consider using
penguin. (See CPAN). (Note also that I always opened to comments and
suggestion to improve the security aspects)

All in all, I've tried to keep things simple.

So this module should be :
- quite simple to use (thanks to autoload mechanisms)
- lightweight

It sure is not :
- DCE
- CORBA (which is blocking)
- bulletproof
- foolproof

But it works. (Although I'm opened to suggestion regarging the "un-
proof" areas)


This module was written with perl5.004.

See the embedded documentation in the module for more details.

Comments and suggestions are always welcome.

Note that this module is in alpha state. Its interface may change (but
I hope not).

Alpha exit criteria:
- When some peoples (well, say 10 guys) tell me that they've used it
 and did not find major bug with the module or minor problems with the
 interface.

Legal mumbo jumbo:

Copyright (c) 1995 Dominique Dumont. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.




Share and enjoy



--
[email protected]