public ProcessServer() {
super();
try {
inputStream = new PipedInputStream();
inputStream.write(com.aptana.shared_core.string.StringUtils.format("Debug Server at port: %s\r\n",
DebugPluginPrefsInitializer.getRemoteDebuggerPort()).getBytes());
errorStream = new PipedInputStream();
outputStream = new ProcessServerOutputStream();
lock = new Object();
} catch (Exception e) {
Log.log(e);