Go to the task bar at the bottom and right click on an empty space on it. You should see a popup menu with 'Task Manager...' on it. Click it and up comes the task manager. Choose it's 'Processes' tab and look for the running executable you wish to stop; select it and right click for it's popup menu. Click 'End Process'
You can close only those programs which you run through your java program. e.g. you can run a batch file through your java program as follows:
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec("c:\\my.bat");
Now you have a reference of your created program. At any time you can close it as follows:
process.destroy();
This will be done on a Win2003 Server. A ColdFusion template will call the Java object to run the program. What exactly do I need to install on the Win2003 server for this small Java object to work?
Once a CF template initially loads the object, should any other CF template should have access to the loaded object?
Thanks,
Brett