muthuma has asked for the wisdom of the Perl Monks concerning the following question:

Can any monks provide link or snippet to using POE to use RPC.my need is to call a procedure in server thro' client and set parameters in client.Just Server do the job.

Replies are listed 'Best First'.
Re: POE RPC example
by Anonymous Monk on Nov 01, 2008 at 14:23 UTC
      Thank you for your ref. I went through that in cookbook. Any monks provide solution for pblm A .Is there a way to handle multiple services with one client using POE::Component::IKC. I dont have pblm with servers(it will service only one job at a time from only one client) but what about client whether it would be capable of handling multiple response from various services. B.One way getting reponse
      pseudo code in client Assume ip1,ip2,ip3..so on are already connected sock. Added each of the socket to IO::Select while(1) { (@ready)= IO::Select->select($selector,undef,undef); proceed with received reponse from services. }
      Any better way to do this??? Any link/reference would also be helpful