RE: Calling CGI script

2004-04-15 Thread Alain Van Vyve
In fact, the problem I forgot to mention is that this CGI script will himself contact the banking site responsible of a payment and present an HTML page to the end-user ... What do I have to do in my action ? because my action needs an ActionForward return value ... I think the solution should

RE: Calling CGI script

2004-04-14 Thread Joe Hertz
I had a similar problem once, an action needing to call a client's NT executable to generate a file to be emailed to someone. This isn't really a struts problem though. CGI only means it's an application that takes it parameters on the command line and prints whatever it wants to be displayed in

RE: Calling CGI script

2004-04-14 Thread MARU, SOHIL (SBCSI)
You can do that by using the Java Runtime.getRuntime().exec(command) Where exec is the command on your file system. -Original Message- From: Alain Van Vyve [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 8:48 AM To: Struts Users Mailing List Subject: Calling CGI script My app