in reply to Queuerpc Error

This is not an error message from perl, it is coming from a third-party product doing Remote Procedure Calls, so you will have to tie down the error to a section of code.

I suggest that you first try to reproduce the error, preferably in a single-threaded version of your program because debugging multi-threaded code is many times more difficult. Step through your code using the debugger, or insert print statements to STDERR to find where the message is coming from. Take one small step at a time, and don't expect to finish early tonight.

Replies are listed 'Best First'.
Re^2: Queuerpc Error
by ajeet@perl (Acolyte) on Apr 07, 2010 at 08:23 UTC
    Yeah, right...got it...Thank You