CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Applet won't load in Netscape

    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!



  2. #2
    Join Date
    Sep 1999
    Posts
    12

    Re: Applet won't load in Netscape

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured