in reply to POE RPC example

see http://poe.perl.org/?POE_Cookbook

Replies are listed 'Best First'.
Re^2: POE RPC example
by muthuma (Novice) on Nov 02, 2008 at 12:39 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
        Ya I have gone through this example which provide sequential way of handling. this a sequential way of doing,but not a parallel processing/multiplexing/threading foreach my $port (@ports) { } Is there possiblity to handle parallel processing??? Any help would be appreciated.