Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error Messages in Internet 6.0 when using Java Plugin 1.3.1

Status
Not open for further replies.

chemed

IS-IT--Management
Jan 28, 2003
1
US
We have an internet application which is viewed on Internet Explorer 6. The application consists of a frameset which has several java applets. These java applets are updated by the user clicking on other panes and javascript
code updating the applets. The applets don't use the Internet Explorer JVM, but the Java Plugin Version 1.3.1. Our problem is that once the applets are updated a few times, Internet Explorer crashes, reporting that 'Internet
Explorer has encountered a problem and needs to close.'

Does anyone have a solution to this issue. Thanks for the help.
 
This might have someting to do with the jsObject. When I used it IE 6 crashed a lot (and wanted to report it).

I don't know what combination I used to make it crash but it did not have anything to do with frames or gui stuff on the applet (the applet wasn't visible)
I used the applet to load data, generate html code to be displayed in a <div> on the page that contained the applet.

Don't have access to the dev kit but I think it had something to do with:

import netscape.javascript.*;
import java.applet.*;
import java.awt.*;
public class javaData extends java.applet.Applet {
JSObject win= JSObject.getWindow(this);
public void init() {

should be:

import netscape.javascript.*;
import java.applet.*;
import java.awt.*;
public class javaData extends java.applet.Applet {
JSObject win;
public void init() {
win = JSObject.getWindow(this);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top