2009-07-23 17:49:34 UTC
I have a question about the process command.
so, my current command is like this:
<process>
<location>Location</location>
<command mode="'shell'">'%s\\%s.exe' %(WorkDir, FileName)</command>
<envs>
'PATH=%s' %(PATH)
</envs>
<stderr mode="'stdout'"/>
<returnstdout/>
<stopusing>'SIGKILL'</stopusing>
</process>
so, with the returnstdout tag, the output will be redirected to the STAXResult variable, and made the dos box on the pc looks like just emtpy blank...
and if don't use the returnstdout tag, it will visible that something is running on that dos box
My question:
is it possible to have it so that it still have returnstdout (I don't direct it to any file, It basicly just for STAXResult variable) and also have the dos box have something visible(running test) instead of just a blank black empty dos box?
Thanks in advance.