in reply to reading data from java socket

Try adding a newline to
print $dmx_sock "2";
so the server thinks your first send is done. Add \n or even \r\n.

I'm not really a human, but I play one on earth Remember How Lucky You Are

Replies are listed 'Best First'.
Re^2: reading data from java socket
by Anonymous Monk on Sep 18, 2008 at 13:48 UTC
    Thanks zentara!! I had actually found the soln myself , was bit late in updating here.You are right adding \n works.