I have a Java app that when I start says:
This version of InstallShield Java Edition requires JDK version 1.1 or greater. (Currently running JDK 1.0.5)
I'm running RedHat 6.2 and the standard JRE, Kaffe:
Kaffe Virtual Machine
Copyright (c) 1996-1999
Transvirtual Technologies, Inc. All rights reserved
Engine: Just-in-time v3 Version: 1.0.5 Java Version: 1.1
So, How do I make the App read the Java version instead of the Kaffe version?
It is a client from Citrix, I don't have the source and it can be found at:
http://download.citrix.com/cgi-bin/shift_class.cgi/setup.class?filesrc=pub/clients/java/setup.class
I've tried to install the Blackdown 1.1.7 JDK but I couldn't get it to work at all.
Currently I have Kaffe and Sun's jdk1.2.2 running.
1.) install the jdk
2.) open your shell profile
on my box it is .bash_profile
3.) change
PATH=:$PATH:$HOME/bin
to
PATH=/<jdkpath>/bin/$PATH:
where <jdkpath> = directory the jdk is installed .
4. run . .bash_profile
5 type which java to determine if it took.