I am creating an Activiti controller that can listen for messages and fork off the processes on demand.

I have been trying to use the java Process p = Runtime.getRuntime().exec("java -jar ..."); as it works just fine when I run normal java executable jars, but in the case of running activiti projects that are exported the call seems to hang until the activiti controller completes.

Controller: while(1){ print "listening" recv message print "executing" exec process print "done" }

when a message is received all of the prints display, including coming back to the top of the loop. but until i forcibly close the application, or remove the while loop entirely, the process does not actually run.

when the controller code is completed the entire activiti jar can be seen completing in command line.

**it is not simply holding the output and displaying it at the end, I know this because the workflow passes messages to other services which i can monitor for activitiy.

**i have tried using runnable and thread instead, placing the exec into another class and the same behavior is exhibited.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Make sure you are reading stdout and stderr from the process.

link|improve this answer
the first thing the process does is send a message to another piece of software, that does not happen until the activiti controller is stopped/completed. also, if i don't read from the getOutputStream() , getInputStream() , getErrorStream() it shouldn't block... right? – COner Jul 19 '11 at 1:18
from the Java API of Process: All its standard io (i.e. stdin, stdout, stderr) operations will be redirected to the parent process through three streams (getOutputStream(), getInputStream(), getErrorStream()). The parent process uses these streams to feed input to and get output from the subprocess. Because some native platforms only provide limited buffer size for standard input and output streams, failure to promptly write the input stream or read the output stream of the subprocess may cause the subprocess to block, and even deadlock. – Jochen Bedersdorfer Jul 19 '11 at 1:29
you have no idea how much i love you right now. i didn't think that the error stream would block process execution. – COner Jul 19 '11 at 1:36
Thx! Glad to hear that fixed the problem. – Jochen Bedersdorfer Jul 19 '11 at 1:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.