Mozilla 1.4.2 and Java Applets on Linux

Hello,
Does anyone have clue as to why the newest version of java does not work on Mozilla -1.4.2 on linux.
I went to java.com and downloaded the jre. Followed all the setup instructions TWICE. Still no java. I look in the help/plugins and see the flash plugins are working great but no java. It's enabled in the advanced preferences and I have the .so file in the plugins directory. Anybody have a clue???
Thanks for any help in advance,
-Wiley

[root@localhost mozilla]# ./mozilla
You're using the 'root' account to do normal work?????-------------------------------------------
Yes I did do that when I su root to create a symbolic link. Maybe I strayed and installed something as root. That should not have corrupted my system.
/usr/local/mozilla/plugins/java2/plugin/i386/ns600/libjavaplugin_oji.soThis was something I tried as last ditch efforts. THIS is the link that is created when in version 1.7 of mozilla you go to a page that has an applet. It gives you a download window that askes if you want to download the plugin. I'm using the LATEST version of java and this link does not exist obviously.
Now I've given up on the "pop-up/ install applet plugin becuase it does not work." THIS IS THE LINK CREATED BY THE "INSTALL PLUGIN WINDOW in version mozilla 1.7 when you hit an applet page".... which I have removed it all becuase its worthless too.
/usr/local/mozilla/plugins/java2/plugin/i386/ns600/libjavaplugin_oji.so
Also - The directions given on LINUX INSTALL INSTRUCTIONS on the http://www.java.com download page are worthless.
I've gone in as a normal user not root and nothing works.
this is where my link is....
/usr/local/mozilla/plugins/libjavaplugin_oji.so
this is where it points to....
<java-home>/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so
this is how it was created in the mozilla plugins directory
ln -s <java-home>/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so /usr/local/mozilla/plugins/libjavaplugin_oji.so
If you look at the installation instructions again, I have followed them to a T.
these are the errors associated with the worthless"Download Plugin option" which has been removed and I'm back to creating the symlink manually again which does not work.
libXext.so: cannot open shared object file: No such file or directory
libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
This sounds like you may be missing some important software libraries or that they are too old. Which >distro are you using?
If you have only recently installed them you may need to run "ldconfig" so that the runtimelinker can find >them. It should NOT be this big of a headache when I recently installed redhat enterprise 3 workstation - then I updated the system with the "updates" option for redhat that downloads all recent and available updates.
installed the jre - then I tried to see an applet in mozilla. Thats it.
IT DOES NOT WORK. If it works for someone out there with the latest JRE and mozilla-1.4.2 or 1.7 thats great but I can't seem to figure why I can't get it to work........
thanks,
-Wiley

Similar Messages

  • Mozilla 1.4.2 and Java Applets on Linux Red Hat

    Hello,
    Does anyone have clue as to why the newest version of java does not work on Mozilla -1.4.2 on linux.
    I went to java.com and downloaded the jre. Followed all the setup instructions. Still no java. I look in the help/plugins and see the flash plugins are working great but no java. It's enabled in the advanced preferences and I have the .so file in the plugins directory. Anybody have a clue???
    Thanks for any help in advance,
    -Wiley

    Which Java version are you trying to install? The version of Mozilla you use doesn't matter, although I think 1.6 is quite a bit faster than 1.4. I haven't bothered to upgrade to 1.7, I'll upgrade to 1.8 when it's released ...
    The j2sdk comes with several libjavaplugin_oji.so files for different configurations. To which one does the link in the plugins dir point?
    With 1.4.2 the link must be to <java-home>/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so
    With 1.5.0 beta 2 <java-home>/jre/plugin/i386/ns7/libjavaplugin_oji.so

  • COMMUNICATION BETWEEN JAVASCRIPT AND JAVA APPLET: US$20 AWARD FOR SOLUTION!

    COMMUNICATION BETWEEN JAVASCRIPT AND JAVA APPLET PROBLEM (Easy Filter Java Applet) -
    US$20 TO ANYONE WHO CAN RESOLVE THE PROBLEM
    To forum visitors:
    I am prepared to pay a standard shareware fee of US$20 to a user who can resolve this technical problem.
    If your advice resolves the problem, I'll forward the payment to your postal address (include your
    address with your reply, and also your email address)
    I am attempting to enable a HTML button (using Javascript's onClick command) to directly input a number into one of the parameter text boxes in the Easy Filter Java applet (ie, enter a new color value number in the text field of the standard Colors Multiplicator Filter interface).
    The applet is Freeware and can be downloaded at: http://www.javazoom.net/applets/easyfilter10/EasyFilter10.html
    (It is a very effective bitmap display and editing utility)
    To achieve this, I am trying to access the part of the applet that defines and sets the textbox. The text box is defined in the .class file by accessing the parameter details in the genericfilter.txt file (accompanies the .class files). I need to access 'private String appletInitialize()' and then one of the 'textFieldParameters' which sets the textbox.
    I understand the basic syntax for referencing the applet:
    document.appletname.setString("An example"). However, accessing the text fields in this applet is more complex!!
    Please can you recommend the correct Javascript syntax to achieve communication with the applet.
    Thank you for your kind assistance.
    JM Graham
    [email protected]
    The Java source code for the applet: EasyFilter.class
    # Easy Filter - E.B/JavaZOOM 1999 #
    # Contact: [email protected] #
    # http://javazoom.hypermart.net #
    /* Originally compiled from EasyFilter.java */
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import java.applet.Applet;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.image.MemoryImageSource;
    import java.awt.image.PixelGrabber;
    import java.util.Vector;
    public synchronized class EasyFilter extends Applet implements KeyListener
    private String paramFileName;
    private Color bgColor;
    private Color fgColor;
    private Color parColor;
    private Color sepColor;
    private Color titleColor;
    private Color helpColor;
    private int WinWidth;
    private int WinHeight;
    private String title;
    private String logoFileName;
    private String originalImageFileName;
    private String filteredCaption;
    private String originalCaption;
    private Vector paramsName;
    private Vector paramsValue;
    private Vector paramsComment;
    private Panel panelParameters[];
    private Label labelParameters[];
    private TextField textFieldParameters[];
    private Label labelComments[];
    private int nbParameters;
    private ScrollPane scrollPaneParams;
    private Panel panelParams;
    private Image theLogo;
    private Image theOriginalImage;
    private Image theFilteredImage;
    private int theOriginalPixelArray[];
    private int logoWidth;
    private int logoHeight;
    private int imageWidth;
    private int imageHeight;
    private drawCanvas canvasTitle;
    private Panel panelTitle;
    private Label labelTitle;
    private Panel panelImages;
    private Panel panelOriginalImage;
    private drawCanvas canvasOriginalImage;
    private Label labelOriginalImage;
    private Panel panelFilteredImage;
    private drawCanvas canvasFilteredImage;
    private Label labelFilteredImage;
    private Panel panelHelp;
    private Label labelHelp;
    private int Yspc;
    private FilterImplementation theFilter;
    public void init()
    String string = null;
    string = appletInitialize();
    setBackground(bgColor);
    if (string != null)
    removeAll();
    setBackground(Color.white);
    setForeground(Color.black);
    Label label = new Label(new StringBuffer("Error: ").append(string).toString(), 1);
    Panel panel = new Panel();
    panel.add(label);
    add(panel);
    setLayout(new FlowLayout(1, 5, Yspc));
    public void keyPressed(KeyEvent keyEvent)
    panelHelp.removeAll();
    boolean flag = true;
    if (KeyEvent.getKeyText(keyEvent.getKeyCode()).equals("Enter"))
    for (int i = 0; i < nbParameters; )
    try
    paramsValue.setElementAt(new Double(textFieldParameters.getText()), i);
    i++;
    catch (NumberFormatException e)
    labelHelp.setText(labelParameters[i].getText() + ": Not a Number");
    flag = false;
    break;
    if (flag == 1)
    labelHelp.setText(" .... Running, please wait .... ");
    labelHelp.setAlignment(1);
    panelHelp.add(labelHelp);
    panelHelp.doLayout();
    theFilter.updateParameters(paramsValue);
    theFilter.computeFilter();
    theFilteredImage = createImage(new MemoryImageSource(theFilter.getFinalImageWidth(), theFilter.getFinalImageHeight(), theFilter.getFinalImageBuffer(), 0, theFilter.getFinalImageWidth()));
    canvasFilteredImage.setImage(theFilteredImage);
    canvasFilteredImage.setBounds(0, 0, theFilter.getFinalImageWidth(), theFilter.getFinalImageHeight());
    canvasFilteredImage.repaint();
    panelHelp.removeAll();
    labelHelp.setText("- Done -");
    else
    labelHelp.setText("- Press Enter to run the Filter -");
    labelHelp.setAlignment(1);
    panelHelp.add(labelHelp);
    panelHelp.doLayout();
    public void keyReleased(KeyEvent keyEvent)
    public void keyTyped(KeyEvent keyEvent)
    private String appletInitialize()
    WinWidth = size().width;
    WinHeight = size().height;
    if (getParameter("bgcolor") == null)
    bgColor = new Color(0, 0, 40);
    else
    bgColor = new Color(Integer.parseInt(getParameter("bgcolor"), 16));
    if (getParameter("fgcolor") == null)
    fgColor = new Color(255, 255, 255);
    else
    fgColor = new Color(Integer.parseInt(getParameter("fgcolor"), 16));
    if (getParameter("sepcolor") == null)
    sepColor = new Color(158, 128, 128);
    else
    sepColor = new Color(Integer.parseInt(getParameter("sepcolor"), 16));
    if (getParameter("parcolor") == null)
    parColor = new Color(24, 24, 24);
    else
    parColor = new Color(Integer.parseInt(getParameter("parcolor"), 16));
    if (getParameter("titlecolor") == null)
    titleColor = new Color(255, 255, 0);
    else
    titleColor = new Color(Integer.parseInt(getParameter("titlecolor"), 16));
    if (getParameter("helpcolor") == null)
    helpColor = new Color(0, 255, 255);
    else
    helpColor = new Color(Integer.parseInt(getParameter("helpcolor"), 16));
    paramsName = new Vector();
    paramsValue = new Vector();
    paramsComment = new Vector();
    paramFileName = getParameter("paramfile");
    String string = readParams(paramFileName);
    if (string != null)
    return string;
    MediaTracker mediaTracker = new MediaTracker(this);
    theOriginalImage = getImage(getDocumentBase(), originalImageFileName);
    mediaTracker.addImage(theOriginalImage, 0);
    if (logoFileName != null)
    theLogo = getImage(getDocumentBase(), logoFileName);
    mediaTracker.addImage(theLogo, 1);
    try
    mediaTracker.waitForAll();
    catch (InterruptedException e1)
    return "Error while loading image";
    if (mediaTracker.isErrorAny())
    return "Error while loading image";
    if (logoFileName != null)
    logoWidth = theLogo.getWidth(this);
    logoHeight = theLogo.getHeight(this);
    imageWidth = theOriginalImage.getWidth(this);
    imageHeight = theOriginalImage.getHeight(this);
    theOriginalPixelArray = new int[imageWidth * imageHeight];
    PixelGrabber pixelGrabber = new PixelGrabber(theOriginalImage, 0, 0, imageWidth, imageHeight, theOriginalPixelArray, 0, imageWidth);
    try
    pixelGrabber.grabPixels();
    panelTitle = new Panel();
    canvasTitle = new drawCanvas();
    labelTitle = new Label();
    panelTitle.setLayout(new FlowLayout(1, 10, Yspc));
    add(panelTitle);
    panelTitle.setBackground(bgColor);
    panelTitle.add(canvasTitle);
    canvasTitle.setImage(theLogo);
    canvasTitle.setBounds(0, 0, logoWidth, logoHeight);
    labelTitle.setText(title);
    catch (InterruptedException e2)
    return "Internal Error, Try RELOAD !";
    if (title != null)
    panelTitle.add(labelTitle);
    labelTitle.setForeground(titleColor);
    labelTitle.setFont(new Font("Dialog", 1, 14));
    panelImages = new Panel();
    panelOriginalImage = new Panel();
    canvasOriginalImage = new drawCanvas();
    labelOriginalImage = new Label();
    panelFilteredImage = new Panel();
    canvasFilteredImage = new drawCanvas();
    labelFilteredImage = new Label();
    panelImages.setLayout(new FlowLayout(1, 10, Yspc));
    add(panelImages);
    panelImages.setBackground(bgColor);
    panelOriginalImage.setLayout(new BorderLayout(0, 2));
    panelImages.add(panelOriginalImage);
    panelOriginalImage.setBackground(Color.black);
    panelOriginalImage.add("Center", canvasOriginalImage);
    canvasOriginalImage.setImage(theOriginalImage);
    canvasOriginalImage.setBounds(0, 0, imageWidth, imageHeight);
    labelOriginalImage.setText(originalCaption);
    labelOriginalImage.setAlignment(1);
    panelOriginalImage.add("South", labelOriginalImage);
    labelOriginalImage.setBackground(Color.lightGray);
    labelOriginalImage.setForeground(Color.black);
    labelOriginalImage.setFont(new Font("SansSerif", 0, 10));
    panelFilteredImage.setLayout(new BorderLayout(0, 2));
    panelImages.add(panelFilteredImage);
    panelFilteredImage.setBackground(Color.black);
    panelFilteredImage.add("Center", canvasFilteredImage);
    theFilter = new FilterImplementation(paramsValue, theOriginalPixelArray, imageWidth, imageHeight);
    theFilter.computeFilter();
    theFilteredImage = createImage(new MemoryImageSource(theFilter.getFinalImageWidth(), theFilter.getFinalImageHeight(), theFilter.getFinalImageBuffer(), 0, theFilter.getFinalImageWidth()));
    canvasFilteredImage.setImage(theFilteredImage);
    canvasFilteredImage.setBounds(0, 0, theFilter.getFinalImageWidth(), theFilter.getFinalImageHeight());
    labelFilteredImage.setText(filteredCaption);
    labelFilteredImage.setAlignment(1);
    panelFilteredImage.add("South", labelFilteredImage);
    labelFilteredImage.setBackground(Color.lightGray);
    labelFilteredImage.setFont(new Font("SansSerif", 0, 10));
    scrollPaneParams = new ScrollPane(0);
    panelParams = new Panel();
    nbParameters = paramsName.size();
    int i = WinHeight - (33 + 7 * Yspc + logoHeight + imageHeight + 23);
    if (i < Yspc + 2 + 24)
    i = Yspc + 2 + 24;
    scrollPaneParams.setBounds(0, 0, WinWidth - 10, i);
    panelParams.setLayout(new GridLayout(nbParameters, 1, 5, Yspc / 2));
    scrollPaneParams.add(panelParams);
    panelParams.setBackground(sepColor);
    panelParameters = new Panel[nbParameters];
    labelParameters = new Label[nbParameters];
    textFieldParameters = new TextField[nbParameters];
    labelComments = new Label[nbParameters];
    for (int j = 0; j < nbParameters; j++)
    panelParameters[j] = new Panel();
    panelParameters[j].setLayout(new FlowLayout(0, 5, 1));
    panelParams.add(panelParameters[j]);
    panelParameters[j].setBackground(parColor);
    labelParameters[j] = new Label();
    labelParameters[j].setText((String)paramsName.elementAt(j));
    panelParameters[j].add(labelParameters[j]);
    labelParameters[j].setForeground(fgColor);
    labelParameters[j].setFont(new Font("Dialog", 1, 12));
    textFieldParameters[j] = new TextField(8);
    textFieldParameters[j].setText(paramsValue.elementAt(j).toString());
    panelParameters[j].add(textFieldParameters[j]);
    textFieldParameters[j].setBackground(fgColor);
    textFieldParameters[j].addKeyListener(this);
    labelComments[j] = new Label();
    labelComments[j].setText((String)paramsComment.elementAt(j));
    panelParameters[j].add(labelComments[j]);
    labelComments[j].setForeground(fgColor);
    add(scrollPaneParams);
    panelHelp = new Panel();
    labelHelp = new Label();
    panelHelp.setLayout(new FlowLayout(1, 5, 0));
    add(panelHelp);
    panelHelp.setBackground(bgColor);
    labelHelp.setText(" Change colour values and press enter ");
    labelHelp.setAlignment(1);
    panelHelp.add(labelHelp);
    labelHelp.setForeground(helpColor);
    return null;
    private String readParams(String string1)
    Object object1;
    String string2;
    if (string1 == null)
    return "Filename of filter's parameters needed";
    try
    URL uRL = new URL(getDocumentBase(), string1);
    URLConnection uRLConnection = uRL.openConnection();
    uRLConnection.setDoInput(true);
    uRLConnection.setUseCaches(false);
    BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(uRLConnection.getInputStream()));
    string2 = null;
    catch ()
    return object1.getMessage();
    catch ()
    return object1.getMessage();
    catch ()
    return object1.getMessage();
    if (bufferedReader != null)
    Object object2;
    try
    for (object2 = bufferedReader.readLine(); object2 != null && string2 == null; object2 = bufferedReader.readLine())
    string2 = extractFormat(object2);
    catch ()
    string2 = object2.getMessage();
    finally
    bufferedReader.close();
    if (string2 != null)
    return string2;
    else
    return null;
    private String extractFormat(String string1)
    if (string1.length() == 0)
    return null;
    int i = 0;
    int j = string1.indexOf(" ", i);
    if (j == -1)
    return "Bad format error (space missing)";
    String string2 = string1.substring(i, j);
    if (string2.equals("TITLE"))
    i = j;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in TITLE missing)";
    i = j + 1;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in TITLE missing)";
    title = string1.substring(i, j);
    return null;
    if (string2.equals("ORIGINALCAPTION"))
    i = j;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in ORIGINALCAPTION missing)";
    i = j + 1;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in ORIGINALCAPTION missing)";
    originalCaption = string1.substring(i, j);
    return null;
    if (string2.equals("FILTEREDCAPTION"))
    i = j;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in FILTEREDCAPTION missing)";
    i = j + 1;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in FILTEREDCAPTION missing)";
    filteredCaption = string1.substring(i, j);
    return null;
    if (string2.equals("LOGO"))
    i = j + 1;
    j = string1.length();
    logoFileName = string1.substring(i, j);
    return null;
    if (string2.equals("ORIGINALIMAGE"))
    i = j + 1;
    j = string1.length();
    originalImageFileName = string1.substring(i, j);
    return null;
    if (!string2.equals("PARAM"))
    return null;
    i = j;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format in a PARAM line";
    i = j + 1;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format in a PARAM line";
    paramsName.addElement(string1.substring(i, j));
    i = j + 2;
    j = string1.indexOf(32, i);
    if (j == -1)
    return "Bad format in a PARAM line";
    try
    paramsValue.addElement(new Double(string1.substring(i, j)));
    j = string1.indexOf(34, i);
    catch (NumberFormatException e)
    return "Bad format in a PARAM line";
    if (j == -1)
    return "Bad format (Double quote in PARAM comment missing)";
    i = j + 1;
    j = string1.indexOf(34, i);
    if (j == -1)
    return "Bad format (Double quote in PARAM comment missing)";
    paramsComment.addElement(string1.substring(i, j));
    return null;
    public EasyFilter()
    logoHeight = 33;
    Yspc = 5;

    Addition to my above submission
    To clarify, I'll offer the US$20 to the FIRST person who offers me a workable solution to the problem, not to everyone!!!
    JMGRAHAM

  • What're the differences between JSP, Java Script, and Java Applet?

    I am confused by the concepts: JSP (Java Server Page), Java Script, and Java Applet? What are their main differences?

    I don't know about differences, but one of their main similarities is that each of them has a page in Wikipedia.
    JSP
    JavaScript
    [Java applet|http://en.wikipedia.org/wiki/Java_applet]
    There. That should give you enough information.

  • Greek lettets and java applet???

    Hello,
    I'm using Linux and i have a problem with the greek letters on the java applets on web pages....
    instead of greek letters i see little squares...
    i don't have much experience nor with linux neither with java.........
    (Sorry for my bad english)
    can u help me please?

    Are you using a browser on the Linux box and it can not display the Greek letters in the applets?
    Or is the Linux box running a servlet engine and is there a problem with the HTML pages and the applets coming from it?
    Edited by: BIJ001 on Sep 27, 2007 10:43 AM

  • General doubt about devices and java applets

    I have one general doubt abt devices.
    Do all devices come with an SDK so that any language can interact with them?.
    Whats does it mean if i say that i need to build a CAB file for the devices
    and use them in my html object tag.
    Can programming languages like java(applets) or asp interact with devices
    once if we specify the classid and the cab file location(codebase)

    Let me make it more clear
    What i need is if we r using an ActiveX Component then we pack the .ocx and inf file into a cab file and give the location of the CAb file in the codebase attribute of object tag.
    When the browser renders the page, it will look into the classid attribute of object tag to see whether there is an entry in registry if not it will go to the location specified in the codebase and get it registered locally.
    As you know ActiveX works on windows.
    I want to implement the same thing in a platform independent way.
    So i chose java applets.
    Now i don't know what to do in this codebase part.
    i need to install the device driver files and all from the server once a person view the web page.
    when we use activex the classid field represents the device's entry but when we use applets thats the version of java being installed.
    Can any one suggest an idea to move.

  • Weblog and Java Applet

    Hi
    I am searching for weblog providers that uses Java applets for writing and displaying weblogs . Please tell me about such sites . Thanks

    java9000 wrote:
    ..I am searching for weblog providers that uses Java applets for writing..An applet can only detect actions or problems that occur within the applet itself (or using JavaScript, the page in which the applet appears). To write to a web server requires help from the server.
    .. and displaying weblogs . ..Weblogs are usually located in an area of the server that is not open to the general public. If they are not available to the general public, they are not available to an applet.

  • DirectX and Java Applet

    Hi
    can some provide some information on how to use directx input with java applet for controlling devices.
    Max

    It won't work in an Applet. At least not without you shelling out hundreds of dollars to get a trusted certificate from Verisign or Thwate. And even if you do get your certificate, you're most likely to have quite a few issues and quite a few pissed off users. Now if you went for an application, you could go to http://games.dev.java.net/ and download JInput (http://jinput.dev.java.net/).

  • The difference between Java webstart and Java Applet?

    Hi all!
    I'm preparing deploy my application. But I'm in two minds I should deploy My application follow Java Webstart model or Java Applet Model.
    if i deploy application by using Java webstart then what will I get benefit? and otherwise?
    Could you tell me some advices?
    Thanks!

    Applet runs in the context of a browser, Webstart requires a small piece of software to be installed on the client and then when you click on your link/icon webstart downloads your application from the server and runs as a Java application (not within a browser).
    Regards
    Grant Ronald
    Oracle Product Management

  • .htaccess and Java applets

    I've got a Java applet that is created by an index.html page.
    The index.html file is protected by a .htaccess file. When the applet loads, I am then prompted each time a new class loads for the .htaccess username and password.
    Needless to say, this is a tedious process.
    How do I get the .htaccess protection to work for disallowing unauthorized access to index.html, but not have the application's users prompted each time the JVM wants to load a class?
    Server: Apache
    OS: RH7
    JVM: 1.3.1
    The jar files are not stored in the same directory as the index.html file.
    TIA,
    Mike

    I have not seen a solution to this yet. I did see one post that indicated it was a bug that was fixed in 1.4.2_05, but I have 1.4.2_06 and still I get a dialog asking for a username/password for the HTML page and another dialog asking for the username/password for the applet.
    Any ideas? This is very annoying.
    Thanks,
    Steve

  • Xcode uiwebviewer and java applet

    hello, i'm new in the forum,
    I want to ask if the uiwebviewer can spport java applet?????

    Outdated hence irrelevant for the future

  • JavaScrpt and Java applet

    Hello all,
    Need Help
    I there any way i can know what JavaScript functions/methods are avaliable in html / or a .js file through applet(awt java1.1).
    Thanks
    Vanasri

    Here is a link to a Sun Tech tip about using the JSObject for Javascript and applet communication
    http://developer.java.sun.com/developer/JDCTechTips/2002/tt0219.html
    It is on the bottom half so you have to scroll down past the Media Framework tip.

  • Java Applets not working using IE 6 after uninstalling software

    I uninstalled some software on WinXP using Add/Remove, however the software still left remnants on my system. I tried to removing all the entries in the registry with RegEdit....I will confess I am a rookie with that tool, however now IE 6 will not launch Java Applets on the web sites I visit.
    I also have Mozilla Firefox 8 installed and Java Applets work fine using that browser. Do I have to reinstall WinXP to correct IE 6, or is there an easier alternative?
    Thanks for any suggestions
    Gerry

    Please check out in the IE Explorer Tools--> Internet Options --> in this Advanced tab this will display you with the set of options and chceck boxes...
    in that please check out that whether the Java(SUN) --- (USe Java....<applet> Requires reStart...
    is existing or not if existing please check it and restart the system.
    if it is not existing in your broser then you have to install the JRE in the system for your Applet to work..
    That can be downloaded form...
    http://www.java.com/en/download/manual.jsp
    Here go for windows....
    All The Best..

  • Java plugin doesn't work, even though it's installed correctly and java programs work.

    As stated. I have a link in ~/.mozilla/plugin that points to test/jre/plugin/i386/ns7/libjavaplugin_oji.so, which is the java 6 update 21 runtime environment.
    Java doesn't show in about:plugins, and java applets don't start (firefox suggests to install missing plugins).
    Java programs using the jre outside the browser work.
    This is on Linux 32-bits, Slackware 13.0, kernel 2.6.34.

    <blockquote>As stated. I have a link in ~/.mozilla/plugin that points to test/jre/plugin/i386/ns7/libjavaplugin_oji.so, which is the java 6 update 21 runtime environment.
    </blockquote>
    Where did you read that?<br />
    See http://kb.mozillazine.org/Java<br />
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html
    <pre><nowiki>ln -s /usr/local/java/jre1.6.0_20/lib/i386/libnpjp2.so libnpjp2.so
    ln -s /usr/lib/jvm/jre/lib/i386/libnpjp2.so /usr/lib/mozilla/plugins/libnpjp2.so (java-1_6_0-sun-plugin)
    </nowiki></pre>

  • Intel Mac Mini, Firefox and Java

    I'm running an Intel Mac Mini using Firefox; mostly it's fine, but sometimes it behaves as if it and Java Applets have had a falling out.
    I have made sure that I have the very latest version of JRE to go with OSX, but when I go to http://www.f1.com and log on to "Live Timing", the frame comes up, but no steaming teacup, then the bottom LH corner says "Done", but the timing area is still blank. Live timing works in Safari & Opera on the same computer, and on any PC running IE6.
    Going to the help section on the live timing box says to go to download the latest version of JRE from the Apple.com website - if I try to do this, OSX refuses the download saying it is older than the version already installed.
    I have sent questions to both Sun & Mozilla weeks ago, but have received no reply; any ideas?

    Dont really have any solution other than the fact that some browsers act funny on certain sites. I think it is specific to the browser, not the computer itself. I have encountered the same thing with certain applets. Also just wanted to give a shoutout from another F1 fan. Good season so far, I think Alonso has the Chin's number this year.

Maybe you are looking for

  • Going crazy after upgrading to ios 8.0.2.

    Please tell me if need to adjust my settings or what? Since upgrading to IOS 8.0.2, my iPad prioritizes my cellular service over WiFi service. I have to physically turn off cellular service before the iPad will even recognize a WiFi connection.  Then

  • I'm having trouble downloading iTunes to Windows 8!

    So I click download iTunes, and then it asks me where I want to save the setup file and I click save, and then usually it appears in my downloads file and I can double click on it and then it says run, save, or cancel. This time after I clicked save,

  • Power Point Slides Change Color After Importing

    I built a lot of training material (22 Captivate modules/movies)- Power Point slides for text, mixed with software simulations. Several of the modules need updating, however, since we upgraded from Office XP to Office 2007, I have been unsuccesful in

  • Query For Linking Activity

    Dear All, I need your help in writing a query. My Scenario is as follows: I add an Activity whose Code is 95. Now using activity no. 95, I make a follow-up whose no. is 103. Now using 103, I create another follow-up, no. is 110. And using 110 I creat

  • NI-1744 Smart Cameras go offline using Vision Builder AI and LV2010?

    I've run into a perplexing and frustrating problem. I have a set of 6 NI-1744 smart cameras used to monitor sample motion in an automated system A central robot moves samples between 6 satellite chambers; there is a camera mounted above the entrance