REPOST: Object Param "classid" hangs IE7
4 Message(s) by 2 Author(s) originally posted in java help
| From: Jim |
Date: Monday, October 15, 2007
|
These
HTML samples have been simplified to demonstrate an issue. I ventured
down this road due to a JAVA
applet that was
hang ing IE7. Other
browser s
and earlier
version s of IE aren't
hung by the top HTML example. The
"propertyFile"
param eter remains to prevent the example from crashing IE7.
The "
class id" value "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" instructs
Internet Explorer to use the latest installed version of JAVA Plug-in.
Does anyone know why the long-standing "classid" parameter isn't liked by
IE 7? What can be done to keep IE7 from hanging on this? I have no desire
to change the instructions to IE. I want it to use the latest installed
version of JAVA Plug-in.
Thanks,
Jim
This HTML WITH the "classid" parameter causes Internet Explorer 7 to hang
for a while.
<html>
<body>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="750"
height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
This HTML WITHOUT the "classid" parameter doesn't cause IE7 to hang.
<html>
<body>
<object width="750" height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
| From: Jim |
Date: Monday, October 15, 2007
|
I should add that this happens with IE7 on XP, not IE7 on Vista.
--Jim
These HTML samples have been simplified to demonstrate an issue. I
ventured
down this road due to a JAVA applet that was hanging IE7. Other browsers
and earlier versions of IE aren't hung by the top HTML example. The
"propertyFile" parameter remains to prevent the example from crashing IE7.
The "classid" value "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" instructs
Internet Explorer to use the latest installed version of JAVA Plug-in.
Does anyone know why the long-standing "classid" parameter isn't liked by
IE 7? What can be done to keep IE7 from hanging on this? I have no
desire
to change the instructions to IE. I want it to use the latest installed
version of JAVA Plug-in.
Thanks,
Jim
This HTML WITH the "classid" parameter causes Internet Explorer 7 to hang
for a while.
<html>
<body>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="750"
height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
This HTML WITHOUT the "classid" parameter doesn't cause IE7 to hang.
<html>
<body>
<object width="750" height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
>
| From: Andrew Thompson |
Date: Monday, October 15, 2007
|
wrote in message:
Sub: REPOST: Object Param "classid" hangs IE7
Repost from where or when? (And please note that
there is no need to SHOUT at us!)
These HTML samples have been simplified to demonstrate an issue.
Are they the *exact* HTML That crashes IE7? *
...
The "classid" value "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" instructs
Internet Explorer to use the latest installed version of JAVA Plug-in.
The best way to ensure
JRE compatibility is to launch the
applet using webstart.
<http://www.physci.org/jws/#jtest>
<http://www.physci.org/jws/version.html>
This HTML WITH the "classid" parameter causes Internet Explorer 7 to hang
for a while.
<html>
<body>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="750"
height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
OTOH, those HTML samples seem to be invalid. By my eye,
the closing
</COMMENT> element is misplaced. That added
to that there is no class specified for either sample
makes it less than surprising that some browser or other
locks up and dies when encountering it.
Andrew T.
| From: Jim |
Date: Tuesday, October 16, 2007
|
Reposted from same group, May 2007.
Thanks for the WebStart tip. I'll look into that.
Thanks also for noticing the misplaced "
</comment>"--does not make a
difference, though.
Add a "dummy" applet--an applet that does nothing at all--and you get the
same results. The previous
code demonstrates the same temporary hang by IE7
on XP, without requiring one to create the dummy applet. Here's the code
for anyone interested in creating the dummy applet.
<html>
<body>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="750"
height="750">
<param name = code value ="Dummy" >
<param name = cache_archive value ="jars/dummy.jar" >
<comment>
<embed width ="750"
height ="750"
code ="Dummy"
cache_archive ="jars/dummy.jar"><noembed>
</noembed></embed></comment>
</object>
</body>
</html>
--Jim
wrote in message:
Sub: REPOST: Object Param "classid" hangs IE7
Repost from where or when? (And please note that
there is no need to SHOUT at us!)
These HTML samples have been simplified to demonstrate an issue.
Are they the *exact* HTML That crashes IE7? *
...
The "classid" value "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
instructs
Internet Explorer to use the latest installed version of JAVA Plug-in.
The best way to ensure JRE compatibility is to launch the
applet using webstart.
<http://www.physci.org/jws/#jtest>
<http://www.physci.org/jws/version.html>
This HTML WITH the "classid" parameter causes Internet Explorer 7 to hang
for a while.
<html>
<body>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="750"
height="750">
<param name = propertyFile value="jars/properties/V.properties">
<comment>
<embed width ="750"
height ="750"
propertyFile ="jars/properties/V.properties"><noembed></comment>
</noembed></embed>
</object>
</body>
</html>
OTOH, those HTML samples seem to be invalid. By my eye,
the closing
</COMMENT> element is misplaced. That added
to that there is no class specified for either sample
makes it less than surprising that some browser or other
locks up and dies when encountering it.
Andrew T.
>
Next Message: eclipse problem