• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem loading applet in Netscape 4.7

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a dialog that extends JDialog, in an applet in a browser.
It`s working fine in IE 5. I`ve just tried it in
Netscape 4.7 (with JRE 1.3.1) and am getting this stack traceback often:
java.lang.IllegalStateException: Can`t dispose InputContext while it`s active
at sun.awt.im.InputContext.dispose (Unknown Source)
at java.awt.Window$1$DisposeAction.run(Unknown Source)
at java.awt.Window.dispose(Unknown Source)
at java.awt.Dialog.disposeImpl(Unknown Source)
at java.awt.Dialog.dispose(Unknown Source)
at com.netegrity.sm.admin.comp.SmDialog.dispose(SmDialog.java:151)
The last line is when my dialog overrides Dialog.dispose() and calls
super.dispose().
after that it makes a call to another applet by calling AppletContext.showDocument(url);

Does anybody understand what this message about InputContext is saying?
plz let me know ASAP..
 
reply
    Bookmark Topic Watch Topic
  • New Topic