i am making a childprocess
ChildProcess _process;
and then using
_process.start(cmd);
where cmd is a String array with first parameter executable followed by arguement as second parameter .
StringArray cmd;
cmd.add(_execPath);
cmd.add(_configUrl);
but its returning false .
Any idea why ?
