Hi IVO -
Very well!
Contents of primary .bat file which I would like to use to kick off subsidiary .bat files:
***************************************
start "title" C:\APPLIC~1\OMS\EXECUT~1\cons1.bat
start "title" C:\APPLIC~1\OMS\EXECUT~1\cons2.bat
*************************************
You will have to trust me that the paths are OK. I can tell you that if I change the name of the last tag, cons1.bat, to something that doesn't exist, say, cons666.bat, that I get a cannot find file windows popup, so I am pretty sure this is not a bat pathing issue.
The contents of cons1.bat are pretty simple:
*************************************
set path=C:\bea\jdk141_05\bin;PATH%
java -classpath ../WEB-INF/lib/omsApp.jar;../WEB-INF/lib/framework.jar;../WEB-INF/lib/Log4J.jar;../WEB-INF/lib/activation.jar;
com/mps/integration/oms/services/ConsumptionInformationConsumer
**********************************
Essentially I am just asking some java classes to be called. The cons1.bat file can be started by itself and runs fine; I only get the failure if I try to use the 'start' command from another .bat file to kick it off. If I use the 'call' command it also works, except my business case dictates the programs called by cons1 and cons2.bat run in parallel.
Thank you so much!
pd