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

Similar Messages

  • 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

  • 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

  • Loading Java Applet Failed : Getting Red "X"

    Hi all
    I have JRE 1.6.0_07 loaded on my machine. When i try to access a particular website from my machine i can see an orange Java Logo and then after some time i get a "Red" "X" on top left with a message in bottom of browser
    "Loading Java Applet Failed".
    I am Using IE 6.0.2900.2180.xpsb_sp2...on a Windows XP SP2 Professional .
    I also get a Error Message as
    "General Exception"
    Name - Batchmanage
    Java.lang.classnotfoundexception.batch.class
    1) However when i disable Options ==> Advance ==> Java(Sun) ==> Use JRE 1.6.0_07 for <applet>
    and enable Options ==> Advance ==> Microsoft VM ==> Jit Compiler for VM enabled
    Application runs fine.
    2) But if i Enable Options ==> Advance ==> Java(Sun) ==> Use JRE 1.6.0_07 for <applet>
    and disable Options ==> Advance ==> Microsoft VM ==> Jit Compiler for VM enabled
    Applications Give error mentioned above and Red X
    3) Similary if i enable Options ==> Advance ==> Java(Sun) ==> Use JRE 1.6.0_07 for <applet>
    As well as enable Options ==> Advance ==> Microsoft VM ==> Jit Compiler for VM enabled
    Still Application Gives error mentioned above and Red X
    For some machines we have observed that it runs fine with Java (Sun) enabled with no Microsoft VM
    Any advise or help would be appreciated
    Thanks

    Hi,
    I am facing the similar problem and following is my applet code which is causing the problem.
    Can you please help me out?
    *<applet name="lic_install" archive="gias/sign_lic_install.jar" codebase="/irj/portalapps/com.test/applet" code="gias/step4calicenses.class" width=200 height=75px>*
    *<param name="sitelicenseurl" value="http://abc.test.com/irj/servlet/prt/portal/prtroot/com.test.DownloadALPLicenses" >*
    *<param name="siteProdcodesURL" value="http://abc.test.com/licenses/applet/gias/prod_codes.txt" >*
    *<param name="siteLic98URL" value="http://abc.test.com/licenses/applet/gias/lic98.cap" >*
    *<param name="siteGetRegistryValDll" value="http://abc.test.com/licenses/applet/gias/step4jnigetpath.dll" >*
    *<param name="siteMergeWinEXE" value="http://abc.test.com/licenses/applet/gias/mergeolf.exe" >*
    *</applet>*

  • Java AND Linux Red Hat

    Hi, I'm a new user of Red Hat. I'm searching the best Java developer tool for linux.
    May you help me?
    TankYou.
    Claudio

    Thank You.
    ... i'm downloading JB5 Personal Edition. :)

  • Using Linux/Red Hat/Intel for Sun ONE/Java Directory Server

    Anybody have any experience of this? We're looking to get off AIX, and Total Cost of Ownership for using Solaris/Sparc versus Linux/Intel is very similar.
    The decider will be if no-one is using Linux as a platform for Sun ONE/Java Directory Server....
    Any feedback would be appreciated....

    We run Directory 5.1 in production on Solaris/Sparc, but I've tried it with sucess on Red Hat 7.2 on Intel. We have not been able to get it to work on Red Hat Enterprise 2.1 or 3.0. The main problem has been that the administration server fails on startup. Obvious the lack of support for the latest enterprise class Linux is a huge drawback. At this point I've decided to stay on Solaris/Sparc until Red Hat comes out with its own release of Netscape's Directory. When that happens we're going to evaluate whether to move the whole environment to Red Hat. The Sun and Netscape servers are almost identical in terms of features and performance, but having an open source version that can run on less expensive hardware would be a terrific win for us.

  • Deploying Java-based Web application in Linux Red Hat

    Dear All:
    I would like to deploy my Java Servlets and JSPs in a Linux Web Server Machine that also will run MySQL.
    I would like to know about the complete softwares that require to run the web application.
    Here I am mentioning few of them and would like to know whether they are correct and/or I need more.
    1. Java
    2. Linux OS
    3. Apache Web Server
    4. Tomcat
    5. MySQL
    6. JDBC
    Looking forward to receiving you kind and prompt help.
    Sincerely,

    If you really want to use the Apache HTTP Server next to Apache Tomcat Server, then look for the mod_jk. Otherwise just leave that Apache HTTP Server away.
    To the point: just learn about each of those components. Just Googling "something tutorial" is enough to find a tutorial about something. As you've posted this in the JDBC forum, I guess the core problem is the JDBC API. [Google it|http://google.com/search?q=jdbc+tutorial].

Maybe you are looking for

  • Lost ipod video

    One of my reasons for buying an Ipod was so that I could get some of the TV shows I'd bought off my laptop and free up some space. So I downloaded several TV seasons to my new Ipod, deleted them from my laptop - and they've disappeared from my Ipod.

  • Has anyone else received this: kcfErrorDomainCFNetworkError 303

    I get this error message when I use the back button on Safari....it seems to be an intermittent problem and with patience, I usually get to the page I want.  The problem seemed to start after I loaded Mackeeper and changed server details to a proxy s

  • Install Shield Problem can;t install or uinstall anyth

    I getError Code:?-5004 : 0x80029c4a Error Information: >SetupDLL\SetupDLL.cpp (975) pAPP:Creative Sound Blaster Audigy, Audigy 2 series and Audigy 4 series Driver PVENDOR:Creative Technology Ltd. PGUID:AAF283AE-985D-4B8A-AFEC-A742D5A797E9 $9..0.429ic

  • Connection error. Connect to Internet but I'm connected

    Hi there, I help customers downloading ebooks with ADE. I have a customer who can't open his ebook and hi gets this message: "connexion error: ADE can't connect to the activation server. Make sure you are connected to internet" He assures he is conne

  • Server definitation files (OC4J 10.1.2) for Eclipse WTP

    Hi all, May I know where can we find the server definitation file (OC4J 10.1.2) for Eclipse's WTP? Thanks and regards, William