Unsolved

This post is more than 5 years old

2 Posts

858

October 3rd, 2007 08:00

NetWorker Management Console and Java Runtime Environment 1.6

I know that NetWorker Management Console doesn't currently support JRE 1.6. Does anyone know when there might be an update for the Console that will support it? The company I work for just pushed out the Java update company wide. It isn't a problem for me, just annoying for others that look at the Management Console.
Thanks for any info.

2 Intern

 • 

14.3K Posts

October 3rd, 2007 12:00

Usually companies before doing such push will check compatibility among software applications they use - obviously that was not done here. I have no idea which release will support 1.6. What you can try (and I can't promise that will work as I didn't test it) is to have 1.5.x and 1.6.x installed and then in java properties select 1.5.x. only to be used with NMC.

2 Posts

October 4th, 2007 06:00

Yeah I talked to the Windows Server Admins about that. We had a good laugh about it. I went ahead and unistalled 1.6 and then reinstall 1.5 for the quick fix. But I only had to do this for a few machines, so it wasn't that bad. I am going to test having both versions installed and selecting the 1.5 to run the Console on my machine today. I will post later to say how it goes. Thanks for the reply.

October 16th, 2007 16:00

If you're ok with sharing a drive (or copying jar files) from the NMC server, you can try this. Yes, I know it's a hack, but it works fine for me.

1. Map a drive letter to \\servername\c$\program files\legato\management (I used letter X:)
2. Kick off everything from the command line. This reproduces the jnlp file as a command line execution. I have a run_nmc.bat file that looks like this:

set NMC_SERVER=myservername
set NMC_LOCATION=x:\web\java

rem If you only have JRE, and not JDK, copy these two files into x:\web\java instead and just change JAVA_HOME to x:\web\java

set JAVA_HOME="c:\program files\java\jdk1.6.0_03"
set CLASSPATH=%JAVA_HOME%\sample\jnlp\servlet\jnlp.jar;%JAVA_HOME%\jre\lib\rt.jar

set CP=%NMC_LOCATION%\gwt.jar;%NMC_LOCATION%\gst.jar;%NMC_LOCATION%\gwt_res.jar;%NMC_LOCATION%\comtsk.jar;%NMC_LOCATION%\jconn2.jar;%NMC_LOCATION%\crimson.jar;%NMC_LOCATION%\jaxp.jar;%NMC_LOCATION%\jcchart.jar;%NMC_LOCATION%\jcfield.jar;%NMC_LOCATION%\jcpagelayout.jar;%NMC_LOCATION%\forms.jar;%NMC_LOCATION%\looks.jar;%NMC_LOCATION%\antlr.jar;%NMC_LOCATION%\retrospect.jar;%NMC_LOCATION%\gapps.jar;%NMC_LOCATION%\gapps_res.jar;%NMC_LOCATION%\nwadmin.jar;%NMC_LOCATION%\nwadmin_res.jar;%NMC_LOCATION%\gconsole.jar;%NMC_LOCATION%\gconsole_res.jar;%NMC_LOCATION%\nmc_help.jar

java -Xms64M -Xmx700M -cp %CLASSPATH%;%CP% COM.legato.gwt.framework.LMainWindow -g %NMC_SERVER% -p gconsole -h 9000 -n 9001 -b 2638 -d 0
No Events found!

Top