IE6 Java Applet problems

I have tried every imaginable setting for IE6 (the latest that came with XP SP2), but cannot get IE to read applets. Even the one on the MIcrosoft test page fails. I set up a simple applet (per MS) and tried to run it. Here is the copy from the Sun Java console. I have no idea how to interpret this. Any ideas?

Thanks

groove

load: class DoesntExist.class not found.

java.lang.ClassNotFoundException: DoesntExist.class

at sun.applet.AppletClassLoader.findClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at sun.applet.AppletClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at sun.applet.AppletClassLoader.loadCode(Unknown Source)

at sun.applet.AppletPanel.createApplet(Unknown Source)

at sun.plugin.AppletViewer.createApplet(Unknown Source)

at sun.applet.AppletPanel.runLoader(Unknown Source)

at sun.applet.AppletPanel.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)

Caused by: java.io.IOException: open HTTP connection failed.

at sun.applet.AppletClassLoader.getBytes(Unknown Source)

at sun.applet.AppletClassLoader.access$100(Unknown Source)

at sun.applet.AppletClassLoader$1.run(Unknown Source)

at java.security.AccessController.doPrivileged(Native Method)

... 10 more

[1374 byte] By [groove] at [2007-9-30 23:28:12]
# 1
*scratches chin* "I think its fucked mate.... it'll cost ya"What version of the JRE/plugin/JVM do you have?
javajugs at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 2
Go here http://java.com/en/download/help/testvm.jsp to test your Java installation.Scroll down for help if there are problems.
ChuckBing at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 3
download the latest release JRE, and use the java plugin settings in control panel to point IE to it. You need to do this manually. It could be that IE is just using an old JRE... one which is too old to view these applets.
javajugs at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 4
Hi,The error message says that the class "DoesntExist" can't be found. Is that a class that you have created?/Kaj
kajbj at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 5

> one which is too old to

> view these applets.

"These" applets? Which ones? If he doesn't use Swing and some other featuers, there shouldn't be a problem.

Did you look at the error message? I think he should check his codebase attribute, I'm sure the problem is neither the IE nor the JVM but simply a class that's not there. Unless I'm overlooking something here...

CeciNEstPasUnProgrammeur at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 6
> I have tried every imaginable setting for IE6 (the> latest that came with XP SP2), but cannot get IE to> read applets. Even the one on the MIcrosoft test page> fails. THESE
javajugs at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 7

I have the latest Sun Java, but even when I switch to the old MS VM, I have the same problem. The test applet on the Sun Java site (http://java.com/en/download/help/testvm.jsp) indicates that my java is working fine. But there are still apps on various web sites that do not work for me. For instance, when I go to http://www.doylesails.com, I get the message "your browser is not java capable". The error is on the home page where there is a picture rotator app. My wife has some old version of MS VM on her laptop and has no problem viewing the Doyle site (and others). The same situation is true on several other sites where I get the error message and she views them just fine.

groove at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 8

Just having it on your machine is not enough, you have to explicitly tell the browser which one to use. Go the plugin settings in control panel (its a java coffee cup icon), and check in the advanced tab that it is using the latest Sun plugin for browsers. This is the only way that IE will use it, and if you have never done this, it will use "default", which is the MS VM. If this is the case, then you will see much of the behaviour you describe.

javajugs at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 9

I already did that, but I re-checked it just in case. It's set to Sun JAva. Using the advanced button within IE Internet Options, I can change back and forth between the MS VM and the latest Sun Java. No matter which I use, I experience the same problem. I just can't view some web site apps.

Thanks for your input.

groove

groove at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...
# 10

Thanks to all who responded to my posts. I figured out the problem. For some reason, Norton Internet Security inserts the following code above Javascripts. So disabling NIS, clearing the cache and refreshing fixes all of my problems. Now to figure out to circumvent this problem and still use the other features of NIS.

Thanks again

groove

<script language="JavaScript">

<!--

function SymError()

{

return true;

}

window.onerror = SymError;

//-->

</script>

groove at 2007-7-7 14:31:16 > top of Java-index,Security,Event Handling...