I am using Runtime.exec() to launch an external 16-bit DOS program (for legacy app compatibility reasons) within my Jave web application. I have stream readers to capture the process's output, I have a timer to interrupt if it takes too long, and I use Process.waitFor() to wait until the process is done before I analyze the captured output. It all works well, MOST of the time.
The problem is, the first time the app is requested for the day (we're not live yet), it times out. I would really like to do some kind of monitoring to tell what the heck is going on - is the spawned process sitting around waiting for OS permission to run? Are the stream readers waiting? Did the OS unload the DOS program that had been in memory when I was running the app yesterday, and it just takes a while to load it again?
It's not a tremendously consistent and reproducible thing, but seems to be generally related to overall computer load and the length of time since the app was last run.
Anyway, I was hoping if I could identify the thread the process was running in (this is a Windows32 machine, BTW), maybe I could tell something, or maybe I could tweak the priority of that thread. If not, is there any sort of monitoring app I can attach to tomcat or to netbeans that might be of any use?
Thanks,
Rebeccah