Re: calling an executable from my jsp program

2002-09-24 Thread Dmitry Namiot
See for example Host script tag from Coldtags suite: http://www.servletsuite.com/servlets/hosttag.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ The NEW Netscape 7.0 browser is now avail

Re: calling an executable from my jsp program

2002-09-23 Thread Steven A. Martin
ent: Monday, September 23, 2002 2:07 PM Subject: calling an executable from my jsp program > Hi Guys, > i am supposed to run an executable(called mp) from within one of my jsp programs. > Basically i have to follow the following steps. > > from within the program ==> c

Re: calling an executable from my jsp program

2002-09-23 Thread Branden Root
Sorry, syntax error. That should be Process p, not just p :) On Monday 23 September 2002 11:25 am, you wrote: > Ramesh, > > Use java.lang.Runtime. example: > > public class HelloWorld { > public static void main(String[] args) { > p = Runtime.getRuntime().e

Re: calling an executable from my jsp program

2002-09-23 Thread Branden Root
Ramesh, Use java.lang.Runtime. example: public class HelloWorld { public static void main(String[] args) { p = Runtime.getRuntime().exec("mp.exe"); // if we want to capture the output from this program BufferedReader is = new Buffer

calling an executable from my jsp program

2002-09-23 Thread Ramesh Kadirisani
Hi Guys, i am supposed to run an executable(called mp) from within one of my jsp programs. Basically i have to follow the following steps. from within the program ==> call the executable ==>provide some input ==> executable gives out some output files ==> back into the program I did the same in