the fire exec command should run the command but not provide output. you can ensure this is going on my creating a batch file which produces a file or writes something etc.
to get output
you need to do something like this:
Process child = Runtime.getRuntime().exec(fullCommand);
InputStream in = child.getInputStream();
// print out stream
BufferedReader din = new BufferedReader ( new InputStreamReader ( in ) );
String txt = null;
StringBuffer strBuf = new StringBuffer ();
while ( ( txt = din.readLine () ) != null )
{
strBuf.append ( txt + “\n” );
}
idcPipeline.insertAfter(“output”, strBuf.toString());
remember also to handle the error stream
#webMethods#Flow-and-Java-services#Integration-Server-and-ESB