* promptly write the input stream or read the output stream of the
* subprocess may cause the subprocess to block, or even deadlock.
*
* --> Deadlock happened on Windows and OS X on each test run!
*/
InputStreamLogger inputStream = new InputStreamLogger(vboxServiceProcess.getInputStream(), "INPUT_STREAM");
inputStream.start();
InputStreamLogger errorStream = new InputStreamLogger(vboxServiceProcess.getErrorStream(), "ERROR_STREAM");
errorStream.start();
// give the webSrv some time to start
Integer startHaltDuration = Configuration.getTimeToStartVboxWebService();
log.debug("Waiting " + startHaltDuration + " seconds for the VBoxWebSrv to start...");