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
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
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
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
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