Re: How to send RPCs to a Network server using Perl

2012-09-07 Thread Shlomi Fish
Hi, On Fri, 7 Sep 2012 07:25:38 -0700 pa...@riseup.net wrote: > The simple way is to write a web service with Soap, or Thrift which I > am familiar with. Thus the client could use the perl http library like > LWP::UserAgent. > SOAP may be a lot of things, but it isn't anything but simple (despi

Re: How to send RPCs to a Network server using Perl

2012-09-07 Thread pangj
The simple way is to write a web service with Soap, or Thrift which I am familiar with. Thus the client could use the perl http library like LWP::UserAgent. > I am planning to design a simple client application to execute RPC (Remote > Procedure Call) on a remote server. > > All I have managed to

Re: How to send RPCs to a Network server using Perl

2012-09-06 Thread Shlomi Fish
Hi Parag, On Wed, 5 Sep 2012 23:27:41 -0700 Parag Kalra wrote: > I am planning to design a simple client application to execute RPC > (Remote Procedure Call) on a remote server. > > All I have managed to learn so far is to create a TCP socket using > IO::Socket::INET. > > But I am not sure wha