SET JONAS_ROOT=c:\PROGRA~1\Jonas
SET PATH=%PATH%;%JONAS_ROOT\bin\nt
 
The last line should read SET PATH=%PATH%;%JONAS_ROOT%\bin\nt. You forgot a percent sign.
 
I have read over previous postings and it has been pointed out that registry.bat has to be running first.  When I do this it comes up with:
 
RmiRegistry
Bad command or file name
 
This means that your shell processor cannot find RmiRegistry.exe. In most cases this is due to the lack of JDK installation: This setup only installs the software but does not include it's bin directory into the PATH. Just try this: Add the following lines to your AUTOEXEC.BAT and reboot your machine. Then you should be possible to start Registry.bat without any problems. After that, you can start EJBServer.bat. Be sure to start the services with the start command, since each of them will lock the shell.
 
Okay, here are the lines to add to AUTOEXEC.BAT (assumed that you are using JDK 1.3.1 on C:\jdk1.3.1):
 
SET JAVA_HOME=C:\jdk1.3.1
SET PATH=%PATH%;%JAVA_HOME%\bin

Reply via email to