Name: rlT66838 Date: 03/27/2000
Java(TM) Plug-in: Version 1.2.2.p001
Using JRE version 1.2.2
I also tested it in 1.3rc1, same problem.
Three files are attached: start.html, JSObjectTest.html, JSObjectApplet.java.
1. Copy these three files in one directory, here assume: c:\temp
2. Compile JSObjectApplet.java and generate JSObjectApplet.class in the same
directory, c:\temp. Please make sure that netscape.javascript.JSObject and
netscape.javascript.JSException are in the classpath for compilation.
3. Make sure all Internet Explorers (4.0 or 5.0) are closed.
4. Make sure java plugin 1.2.2 or 1.3rc1 is installed.
5. Open Java Plug-in Control Panel and enable "Show Java Console".
6. Open an Internet Explorer and change the url address to be
"file:///c:/temp/start.html".
7. Click the link "Open a new window with a JApplet calling JSObject.getWindow
()". A new IE window will be created with the address:
"file:///c:/temp/JSObjectTest.html".
8. The JApplet will be loaded and standard output can be found in the Java
Console.
9. Close the newly opened window containing the JApplet.
10. Repeat step 7, open another IE window by clicking the link "Open a new
window with a JApplet calling JSObject.getWindow()".
11. The JApplet can not be loaded. From the standard output, it can be seen
that it hangs at "JSObject.getWindow()".
====================start.html==========================
<html>
<head> <title>Testing JSObject.getWindow</title>
<SCRIPT LANGUAGE="JavaScript"><!--
var count=1
function openTest()
{
var thishref=location.href
var hosturl=thishref.substring(0,thishref.lastIndexOf("/"));
hosturl+="/JSObjectTest.html"
var wintitle="trekmailWin"+(count++)
window.open(hosturl,wintitle)
}
//--></SCRIPT>
</head><body>
<A HREF="javascript:openTest()"> Open a new window with a JApplet calling
JSObject.getWindow()</A><br>
</body> </html>
======================JSObjectTest.html==============================
<html>
<head> <title>Test </title>
<SCRIPT LANGUAGE="JavaScript"><!--
var browserName=navigator.appName
//--></SCRIPT>
<body>
JSObject testing applet: <br>
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 300 HEIGHT = 200 NAME = "testApplet"
codebase="http://java.sun.com/products/plugin/1.2/jinstall-12-
win32.cab#Version=1,2,0,0">
<PARAM NAME = CODE VALUE = JSObjectApplet.class >
<PARAM NAME = NAME VALUE = "testApplet" >
<PARAM NAME = "MAYSCRIPT" VALUE ="true">
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.2" java_CODE =
JSObjectApplet.class NAME = "testApplet" WIDTH = 300 HEIGHT = 200 MAYSCRIPT =
"true" pluginspage="http://java.sun.com/products/plugin/1.2/plugin-
install.html"><NOEMBED></COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET CODE = JSObjectApplet.class WIDTH = 300 HEIGHT = 200 NAME =
"testApplet" >
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
</body></html>
====================================JSObjectApplet.java=========================
===========
import javax.swing.*;
import javax.swing.text.*;
import java.awt.*;
import netscape.javascript.*;
public class JSObjectApplet extends JApplet
{
public void init()
{
System.out.println("\n====INITING JApplet ...");
}
public void start()
{
System.out.println("====STARTING JApplet ...");
String browserName = "";
try{
JSObject mainwin = null;
System.out.println("in start(), calling JSObject.getWindow()");
mainwin = JSObject.getWindow(this);
System.out.println("in start mainwin: "+mainwin);
Object browserN = mainwin.getMember("browserName");
browserName = browserN.toString();
System.out.println("Browser name: "+browserName);
}catch(Exception ex)
{
System.out.println("Exception: "+ex);
ex.printStackTrace(System.out);
}
JPanel contentPanel = (JPanel)getContentPane();//border layout by default
contentPanel.add(new JTextArea("This is a JTextArea, in "+browserName),
BorderLayout.CENTER);
contentPanel.add(new JButton("North Button"), BorderLayout.NORTH);
}
public void stop()
{
System.out.println("====STOPING the JApplet...");
}
public void destroy()
{
System.out.println("====DESTRORING the JApplet...");
}
}
(Review ID: 102924)
======================================================================
- duplicates
-
JDK-4325387 JSObject access can hang second invocation of IE4.0
-
- Resolved
-