We’re designing a Java EE web app (to run on tomcat)
It’s intended to be a web interface for a command line program. Is there any framework/application that allows this?
i.e. JSP pages which will internally fire commands to a program installed on the same server as the Tomcat server.
The command line is a propietary non-Java program.
You can use
java.lang.Runtimeand itsexec(..)methods to start command-line programs.