We need to invoke a command line utility and read the output/error from a stateless session bean. Will there be any problems if we use Runtime.getRuntime().exec(command) to invoke the command line utility. Please advise.
Bill Shirley
Ranch Hand
Joined: Nov 08, 2007
Posts: 457
posted
0
other than it being relatively slow, i don't think doing it in EJB would be any different than doing it in plain java
Bill Shirley - bshirley - frazerbilt.com
if (Posts < 30) you.read( JavaRanchFAQ);
Mike Keith
author
Ranch Hand
Joined: Jul 14, 2005
Posts: 304
posted
0
Originally posted by Bill Shirley: other than it being relatively slow, i don't think doing it in EJB would be any different than doing it in plain java
...except that EJB containers are not supposed to permit spawning of threads or processes. Most will disallow it, although a few do allow it. It will depend upon the container you are running in and the security tolerance it has. The fact that a thread is being spawned from an EJB will not affect performance, though.