bhupesh.hardel
bhupesh.hardel

Reputation: 19

test java applet is getting started in windows 7 even after successful install of JRE 7 update 9 in IE9

I am getting following exceptions while testing my java installation, even after I reinstalled JRE and Internet Explorer 9 several times. Please help me.

I am testing my jre installation through www.java.com/en/download/testjava.jsp.

java.io.IOException: Invalid Http response
java.io.IOException: Invalid Http response
java.io.IOException: Invalid Http response
java.lang.ClassNotFoundException: testJava2_1.TestVMApplet.class

Upvotes: 1

Views: 185

Answers (1)

Reece Aaron Lecrivain
Reece Aaron Lecrivain

Reputation: 141

Your Java installation is fine as you are recieving Java errors and such.

java.io.IOException: Invalid Http response

Java IO exceptions (Input/output) are thrown when the program can't read or write which includes obtaining the applet you are trying to run. In this case it is being thrown because it can't be downloaded and read, this is most likely due to a network fault or security setting.

Upvotes: 1

Related Questions