September 29th, 1999, 10:02 AM
I have a small applet which works perfectly in IE, but when it comes to netscape It will not load and is not even visible. I know of many problems w/ netscape vs. IE but this one alludes me. Any suggestions or insight would be appreciated. --> THANX!
bandaru.suresh
September 29th, 1999, 12:10 PM
What does the java console say? Does it show some security exception or something else?
Well if it is a security exception, then ur applet has to be signed. But u say it's working fine in IE5.
If ur applet is being loaded form a network then try changing the
prefs.js file by appending the following:
user_pref("security.default_proxy_cert", "");
user_pref("security.warn_entering_secure", false);
user_pref("security.warn_leaving_secure", false);
user_pref("security.warn_submit_insecure", false);
user_pref("signed.applets.local_classes_have_30_powers", true);
user_pref("signed.applets.low_security_for_local_classes", true);
user_pref("signed.applets.verbose_security_exception", true);
Be careful, I did it once for my use anyway. prefs.js is autogenerated file.
When u do this your java console wil show an exception. But don't bother
Try it!!!!
Suresh