Pasting the code sample directly:
Runtime rt = Runtime.getRuntime();
path = "c:\IBM\WebSphere\AppServer\profiles\STSCDmgrProfile\bin\";
cmd = path + "wsadmin";
String cmdString = cmd
+ " -host "
+ host
+ " -port "
+ port
+ " -username "
+ username
+ " -password "
+ password
+ " "
+ "-f" + "c:/IBM/WebSphere/AppServer/profiles/STSCDMgrProfile/temp/mergedScripts.jy"
+ " -lang "
+ lang
+ " -tracefile logs/ssc_wsadmin_trace.txt -appendtrace true";
_logger.finer(cmdString.replaceAll(" " + password, " <password>"));
Process proc = rt.exec(cmdString);
_logger.finer("Launched process");
stdInput = new BufferedReader(new InputStreamReader(proc
.getInputStream()));
stdError = new BufferedReader(new InputStreamReader(proc
.getErrorStream()));
// read the output from the command
String sIn = "";
**while ((sIn = stdInput.readLine()) != null) {**
_logger.log(Level.FINE, "runJCommand stin ==>", sIn);
}
However it hangs while doing readLine() from the stdInput. Highlighted above. Following is what I see in the trace logs:
[7/30/13 23:48:04:937 GMT-12:00] 000000a6 ThreadMonitor W WSVR0605W: Thread "WebContainer : 1" (00000175) has been active for 664085 milliseconds and may be hung. There is/are 1 thread(s) in total in the server that may be hung.
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:223)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
at java.io.BufferedInputStream.read(BufferedInputStream.java:328)
at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:464)
at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:506)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:234)
at java.io.InputStreamReader.read(InputStreamReader.java:188)
at java.io.BufferedReader.fill(BufferedReader.java:147)
at java.io.BufferedReader.readLine(BufferedReader.java:310)
**at java.io.BufferedReader.readLine(BufferedReader.java:373)**
at com.ibm.sametime.console.admin.plugins.wsadmin.SSCWsAdmin.runJCommand(SSCWsAdmin.java:924)
If I run the same mergedScripts.jy
(that I am calling in the java code above), manually through commandline, then it executes successfully and completes in a few mins.
However through Java code it runs forever.
What could be the possible reasons? What actually is STDIN in the above case ?