in reply to Distributing Perl GUI Clients for Server Apps
If, for instance, you're wanting to send a number of encrypted key-value pairs, this could be as simple as
...and a quick split/map/decrypt on the other end will reproduce the hash.use Crypt::Simple; print MYSOCKET encrypt(join(":",map {"$_=$vals{$_}"} keys %vals));
RPC (and thus SOAP) is more often used where you're sending 'objects' back and forth, allowing a client to perform Remote Procedure Calls...overkill for simply sending 'data'.
Having just knocked out a moderately-sized wxWindows app btw, I can (charitably) say that the documentation gives you just enough (with a couple of very minor errors / omissions), and I'd definitely use it again for all my advanced GUI needs. :)
Cheers, Ben.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Distributing Perl GUI Clients for Server Apps
by Anonymous Monk on Aug 06, 2003 at 12:01 UTC | |
by benn (Vicar) on Aug 06, 2003 at 17:30 UTC | |
by Anonymous Monk on Aug 06, 2003 at 17:35 UTC |