About Applet Notinited

Hi
I am a new in applet. i run htm on local iis. a small code with applet notinited error. It is in fact a with-parameter-version of http://javaboutique.internet.com/Blink/. I can run the sample applet perfectly
Applet code:
import java.awt.*;
import java.applet.*;
public class MyBlink extends Applet
String newlbl;
public void init()
     newlbl = getParameter("lbl");
public void paint(Graphics g)
     g.drawString(newlbl, 25, 25);
The code in htm calling applet:
<script type="text/javascript">
document.write("<applet code='MyBlink.class' width='300' height='300'><param name='lbl' value='hellloworld!'></applet>")
</script>
Any advise is appreciated.
shxj99

harmmeijer
Thanks for your reply.
The reason is my forgetting to move XX.class to the running directory.
One more question here.
Before moving mouse in the applet area, the third and forth codes using double buffer in the following page initate with blank background. Please tell me why and how to handle it.
http://www.dgp.toronto.edu/~mjmcguff/learn/java/07-backbuffer/
Thanks again!!
Jeffrey

Similar Messages

  • Applet notinited .. it runs in eclipse, but not in web browser --urgent

    hi,
    firstly i'm sorry for the "urgent" remark in the title, but I actually really need some help to this problem, since I have to pass up this assignment in about 2 more hours.
    on to the question,this is my full code:
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Container;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import javax.swing.event.DocumentEvent;
    import javax.swing.event.DocumentListener;
    public class reza extends JApplet{
         public static void main(String[] args){
              JFrame myWindow = new JFrame("Sample reza");
              myWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              reza testReza = new reza();
              myWindow.setContentPane(testReza);//add to the window
              myWindow.pack();
              myWindow.setVisible(true);
         double sum;     //sum of values entered by user
         private ImageIcon board;
         private JPanel topPanel,boardPanel;
         private JLabel l1,l2,l3,l4,l5,l6,lTotal,lAndryusha,lBorya,lVolodya,lGiveUp,lGiveUp2,boardLabel,lRules;
         private JTextField a[],aTotal, b[], bTotal, c[], cTotal;
         private JButton clear,checkAnswer,solve;
         private Container container;
         String A1,A2,A3,A4,A5,A6,ATOTAL,B1,B2,B3,B4,B5,B6,BTOTAL,C1,C2,C3,C4,C5,C6,CTOTAL;
         public reza(){
              container = getContentPane();
             container.setLayout(new BorderLayout());
             topPanel = new JPanel(new GridLayout(6,8,5,5));
             boardPanel = new JPanel(new GridLayout(1,2,5,5));
             board = new ImageIcon("board.jpg");
             boardLabel = new JLabel(board);
             topPanel.setBackground(Color.WHITE);
             boardPanel.setBackground(Color.white);
             //utk handle button clear ngan solve
             ButtonHandler handler = new ButtonHandler();
             lGiveUp = new JLabel("           Give up?");
             lGiveUp2 = new JLabel("Press this >>>");
             lRules = new JLabel("Rules: User may only use the number shown in the dart board");
             l1 = new JLabel("   1");
             l2 = new JLabel("   2");
             l3 = new JLabel("   3");
             l4 = new JLabel("   4");
             l5 = new JLabel("   5");
             l6 = new JLabel("   6");
             lTotal = new JLabel("   Total");
             lAndryusha = new JLabel("Andryusha");
             lBorya = new JLabel("Borya");
             lVolodya = new JLabel("Volodya");
             a = new JTextField[7];
             b = new JTextField[7];
             c = new JTextField[7];
             aTotal = new JTextField();
             bTotal = new JTextField();
                cTotal = new JTextField();
                clear = new JButton("CLEAR");
             solve = new JButton("SOLVE");
             checkAnswer = new JButton("ANSWER");
             topPanel.add(new JLabel("       "));
             topPanel.add(l1);
             topPanel.add(l2);
             topPanel.add(l3);
             topPanel.add(l4);
             topPanel.add(l5);
             topPanel.add(l6);
             topPanel.add(lTotal);
             topPanel.add(lAndryusha);
             int i=1;
             for (i=1;i<=6;i++){
                  a[i] = new JTextField();
                  a.getDocument().addDocumentListener(new textFieldListenerA());
              topPanel.add(a[i]);
         topPanel.add(aTotal);
         topPanel.add(lBorya);
         for (i=1;i<=6;i++){
              b[i] = new JTextField();
              b[i].getDocument().addDocumentListener(new textFieldListenerB());
              topPanel.add(b[i]);
         topPanel.add(bTotal);
         topPanel.add(lVolodya);
         for (i=1;i<=6;i++){
              c[i] = new JTextField();
              c[i].getDocument().addDocumentListener(new textFieldListenerC());
              topPanel.add(c[i]);
         topPanel.add(cTotal);
         clear.addActionListener(handler);
         solve.addActionListener(handler);
         checkAnswer.addActionListener(handler);
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(clear);
         topPanel.add(solve);
         topPanel.add(new JLabel(" "));
         topPanel.add(lGiveUp);
         topPanel.add(lGiveUp2);
         topPanel.add(checkAnswer);
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         topPanel.add(new JLabel(" "));
         boardPanel.add(boardLabel,BorderLayout.WEST);
         boardPanel.add(lRules,BorderLayout.EAST);
         container.add(boardPanel,BorderLayout.NORTH);
         container.add(topPanel,BorderLayout.CENTER);
         setSize(750,700);
         setVisible(true);
         class textFieldListenerA implements DocumentListener{
              public void insertUpdate(DocumentEvent e){
                   int i,count=0;
                   for (i=1;i<=6;i++){
                        try{                    
                             count = count + Integer.parseInt(a[i].getText());
                        }catch(Exception e1){
                   aTotal.setText("" + count);
              public void changedUpdate(DocumentEvent e){
              public void removeUpdate(DocumentEvent e){               
         class textFieldListenerB implements DocumentListener{
              public void insertUpdate(DocumentEvent e){
                   int i,count=0;
                   for (i=1;i<=6;i++){
                        try{                    
                             count = count + Integer.parseInt(b[i].getText());
                        }catch(Exception e1){                         
                   bTotal.setText("" + count);
              public void changedUpdate(DocumentEvent e){
              public void removeUpdate(DocumentEvent e){               
         class textFieldListenerC implements DocumentListener{
              public void insertUpdate(DocumentEvent e){
                   int i,count=0;
                   for (i=1;i<=6;i++){
                        try{                    
                             count = count + Integer.parseInt(c[i].getText());
                        }catch(Exception e1){
                   cTotal.setText("" + count);
              public void changedUpdate(DocumentEvent e){
                   int i,count=0;
                   for     (i=1;i<=6;i++){
                        try{                    
                             count = count + Integer.parseInt(c[i].getText());
                        }catch(Exception e1){
                   cTotal.setText("" + count);
              public void removeUpdate(DocumentEvent e){
                   int i,count=0;
                   for (i=1;i<=6;i++){
                        try{                    
                             count = count + Integer.parseInt(c[i].getText());
                        }catch(Exception e1){
                   cTotal.setText("" + count);
         private class ButtonHandler implements ActionListener{
              //handle button event
              public void actionPerformed(ActionEvent event){
                   //clear all the text fields
                   if (event.getActionCommand().equals("CLEAR")){
                        int i=0;
                        for (i=1;i<=6;i++){
                             a[i].setText("");
                        aTotal.setText("");
                        for (i=1;i<=6;i++){
                             b[i].setText("");
                        bTotal.setText("");
                        for (i=1;i<=6;i++){
                             c[i].setText("");
                        cTotal.setText("");                    
                   else if (event.getActionCommand().equals("SOLVE")){
                        int aCount[],bCount[],cCount[],i,aTotal=0,bTotal=0,cTotal=0;
                        aCount = new int[7];
                        bCount = new int[7];
                        cCount = new int[7];
                        //make sure all fields have been filled in
                        if (a[1].getText().equals("") || a[2].getText().equals("") || a[3].getText().equals("")|| a[4].getText().equals("")|| a[5].getText().equals("")|| a[6].getText().equals("")|| b[1].getText().equals("")|| b[2].getText().equals("")|| b[3].getText().equals("")|| b[4].getText().equals("")|| b[5].getText().equals("")|| b[6].getText().equals("")|| c[1].getText().equals("")|| c[2].getText().equals("")|| c[3].getText().equals("")|| c[4].getText().equals("")|| c[5].getText().equals("")|| c[6].getText().equals("")){
                             JOptionPane.showMessageDialog(null,"Please fill in ALL the scores!!");
                        //if yes, then only proceed
                        else{
                             //for andryusha
                             for (i=1;i<=6;i++){
                                  try{
                                       aCount[i] = Integer.parseInt(a[i].getText());
                                       aTotal = aTotal + aCount[i];
                                  }catch(Exception e1){
                             //check andryusha's 1st and 2nd shots. They must be equal to 22 when added
                             if (aCount[1] + aCount[2] != 22){
                                  JOptionPane.showMessageDialog(null,"Andryusha's 1st + 2nd shots must be equal to 22!!");
                             if (aTotal==71){
                                  JOptionPane.showMessageDialog(null,"Andryusha's scores is right! Well done!!");
                             }else if (aTotal !=71){
                                  JOptionPane.showMessageDialog(null,"You got it wrong for Andryusha's scores. Please try again.");
                             //for Borya
                             for (i=1;i<=6;i++){
                                  try{
                                       bCount[i] = Integer.parseInt(b[i].getText());
                                       bTotal = bTotal + bCount[i];
                                  }catch(Exception e1){
                             if (bTotal==71){
                                  JOptionPane.showMessageDialog(null,"Borya's scores is right! Well done!!");
                             }else if (bTotal !=71){
                                  JOptionPane.showMessageDialog(null,"You got it wrong for Borya's scores. Please try again.");
                             //for Volodya
                             for (i=1;i<=6;i++){
                                  try{
                                       cCount[i] = Integer.parseInt(c[i].getText());
                                       cTotal = cTotal + cCount[i];
                                  }catch(Exception e1){
                             if (cCount[1] != 3){
                                  JOptionPane.showMessageDialog(null,"Volodya's first score is wrong!!");
                             if (cTotal==71){
                                  if (cCount[2] == 50 || cCount[3] == 50 || cCount[4] == 50 || cCount[5]==50 || cCount[6]==50){
                                       JOptionPane.showMessageDialog(null,"Volodya's score is right! Well done!!");
                                  }else if (cCount[2] != 50 && cCount[3] != 50 && cCount[4] != 50 && cCount[5]!=50 && cCount[6]!=50){
                                       JOptionPane.showMessageDialog(null,"Volodya hits the bull's eye once!!");
                             }else if (cTotal!=71){
                                  JOptionPane.showMessageDialog(null,"Volodya's score is wrong!!");
                   }else if(event.getActionCommand().equals("ANSWER")){
                        a[1].setText("20");
                        a[2].setText("2");
                        a[3].setText("25");
                        a[4].setText("3");
                        a[5].setText("20");
                        a[6].setText("1");
                        aTotal.setText("71");
                        b[1].setText("25");
                        b[2].setText("20");
                        b[3].setText("20");
                        b[4].setText("3");
                        b[5].setText("2");
                        b[6].setText("1");
                        bTotal.setText("71");
                        c[1].setText("3");
                        c[2].setText("50");
                        c[3].setText("10");
                        c[4].setText("5");
                        c[5].setText("2");
                        c[6].setText("1");
                        cTotal.setText("71");
         }//end private class ButtonHandler
    I run the program using Eclipse; run as> Java applet
    and in runs perfectly well. I then tried running it using internet explorer and firefox, but only a gray box appeared and the browser says "applet notinited" and "Loading Java Applet Failed.."
    what did i do wrong? any help is really appreciated.. thanks

    thank God i already found the cause of the problem..
    it's because the application has an ImageIcon which links to a local jpeg file, so perhaps security restriction on the browser doesn't allow my applet to access local file, that's why it fails to load.
    either using signed applet (not tested) or removing the picture solved my problem.
    thanks anyway :)

  • Java applet 'notinited'

    I am receiving an error when my applet is loading
    Java applet notinited
    Using comments i have traced the error to:
    Graphics tempGraph;
    Image[] grid = new grid[someNumber];
    for(int d = 0; d<someNumber; d++)
           grid[d] = createImage(200,100);               
           //the following line is where the problem is...
           tempGraph = grid[d].getGraphics();
    }Any ideas?

    This is just a guess, because I can't see all your code...
    But did you override the method init() in your applet?

  • About applets and secure connection

    Hello. I've read some threads but I can't understand a thing about applets and SSL.
    I've a signed applet. This applets is embedded with applet tag in a jsp page.
    The applet works as a file uploader.
    With signing, the applet can access to the user file system without problem, open a connection with the server and upload files.
    Now, If I want to use HttpsUrlConnection instead of the standard http connection, what certificate does the applet use for handshake? Does the applet automatically use the same certificate used for signing?
    Thank you

    Hello. I've read some threads but I can't understand a thing about applets and SSL.
    I've a signed applet. This applets is embedded with applet tag in a jsp page.
    The applet works as a file uploader.
    With signing, the applet can access to the user file system without problem, open a connection with the server and upload files.
    Now, If I want to use HttpsUrlConnection instead of the standard http connection, what certificate does the applet use for handshake? Does the applet automatically use the same certificate used for signing?
    Thank you

  • Can someone pls tell me what data applet notinited means?!!

    Hi,
    I installed the plug-in...I have Java 2 Runtime environment and plug in 1.3.1_01
    the applet appears in IE, but netscape said the plug in has to be installed again. I installed the same thing again, and I got the message "data applet notinited"...
    The applet however, still works fine with IE.
    Please help!!
    thank you,
    Sangeetha

    Well ando :)
    Yeah, I agree...quite troublesome. Even now, the applet works fine when I access it using the server running on a different machine. But then, when I make a copy of those files on my machine, and have the webserver running on my own machine, and access it, it apears on IE, but doesn't appear on netscape.
    The problem is, I have to develop netscape compatible code!!!
    and btw, I am Ms. Sangeetha :)
    thanks again!
    sangeetha

  • Confusion about applet

    sir
    i have confusion about applet that if an applet compile successfully but on running it shows a exception message about "main"that no such method exist.help me out please

    The full text of the error message would make it easier for us to see what is wrong BUT it sounds like you are trying to run the Applet as an applicaiton from the comand line rather than through an HTML tag in an HTML page loaded into your browser!
    Though you can make Applets run as applications it not normal to do so.

  • Applet Notinited.

    Hello every one...
    I face problem in loading my applet in IE 6.0.
    The error message "applet <appletname> notinited" displays in the status bar.
    The applet contains a JList , a JTextAField and a JButton.
    It works well under AppletViewer.
    weird?!
    could anyone tell me how solve this problem?
    Thank you very much !

    Hi, I am also having the same problem...
    we have a intranet site running, and several client machines connecting to the intranet server. all machines except one works perfectly.
    on the one machine that it does not work on, it has the same error message mentioned above. so if all except one client machine works, surely the problem is not the codebase??
    thank you in advance

  • About applet lock

    Hi,
    I have written the code for an applet file. I'd like to do something or put a password on the file that the code wouldn't be accessable, I mean that if I send the file to somebody and he wants to see the HTML file, he can't see the codes (confidential) .
    Thanks
    Mohammadreza

    Hi,
    I have written the code for an applet file. I'd like
    to do something or put a password on the file that
    the code wouldn't be accessable, I mean that if I
    send the file to somebody and he wants to see the
    HTML file, he can't see the codes (confidential) .
    Thanks
    MohammadrezaYou mean the Applet code? Because forget about hiding the html. The source code for the Applet is only visible if you make it so. The class, however, is downloaded to the users machine and can be deciphered by those who really want to.
    Why is this so important to you?
    ~Bill

  • Security permissions question about Applets

    Hello all.
    I'm wanting to make an address book on my server, so I need to have it write to a file. I've read a bunch about it, and still can't figure it out.
    I'm not exactly sure what the java home is supposed to be. I created a java.policy file in /usr/lib/j2sdk1.5-sun (I'm on Linux), but I think it might belong in /usr/lib/j2sdk1.5-sun/jre or /usr/lib/j2sdk1.5-sun/jre/lib/security
    I'm also not exactly what the java.policy file is supposed to contain. Currently, it is:
    grant codeBase "file:/home/scott/public_html/address_book/old/*" {
            permission java.io.FilePermission "/home/scott/public_html/address_book/old/Test.txt", "write";
    };Anyone want to help?
    Scott Howard

    I'm wanting to make an address book on my server, so I need to have it write to a file.Well, applets run on the client - the browser which downloaded the class files - and therefore cannot access files on the server without some type of networking.
    Caveat - the client and server are the same physical machine.
    Solution - have your applet communicate back to the server it originates from. No policy twiddling is needed, as this is an automatic permission.

  • Question about Applet Securities / Permissions

    Hi,
    I'm about to begin work on a program that will utilize GData API to communicate with Google Calendars. I was wondering if this is going to be allowed in an applet, or if I would have to create it as a Java Application.
    I was looking at: http://java.sun.com/docs/books/tutorial/deployment/applet/security.html
    where it says "It cannot make network connections except to the host that it came from."
    I was wondering if that means I wouldn't be able to use to GData API to retrieve/create events in a Google Calendar.
    Thank you,
    Christopher

    Welcome to the Sun forums.
    elwell.christopher wrote:
    I was wondering if that means I wouldn't be able to use to GData API to retrieve/create events in a Google Calendar.Cool. Be sure to report the results of your experiment to test that. I'm sure others will be interested. And of course, feel free to drop back by if you have a question.

  • Doubts about applet triggering

    Hello guys,
    I was wondering, when I have my applet assigned to be triggered by a EVENT_UNFORMATTED_SMS_PP_ENV or even a EVENT_FORMATTED_SMS_PP_ENV, I mean, the applet being triggered by a SMS-PP message, what happens when I send two consecutive messages, i.e., when I send the second message and the applet is still processing the first one, what happens to the second message? is it lost by the ME or it is kept in some sort of buffer and re-sent to the applet when the applet finishes the process?
    As there are no threads on Java Card so both messages can't be processed at the same time...
    Thank you,
    Helri

    This is too broad a question.
    Toad can fire random sql.
    sql*plus can fire random sql.
    Why would Toad be the problem?
    You would need to gather statspack data to demonstrate this.
    Sybrand,
    Agreed on it and its a relevant point.But I guess he is not worried about the db performance.Anyways lets see what OP says.
    Inner join and left join will always use CBO (Cost Based Optimizer) instead of RBO.
    I am not sure that I have read that anywhere. They came into Oracle in 9i where optimizer mode was choose as the default one. Just by the syntax, oracle would push them to use CBO as the default one,I am not sure about this. Even if we are having + symbol and have the stats,Oracle wold go for CBO right?Can you please point me to some where in the docs where it is mentioned that using this keywords,Oracle would use only CBO?
    Aman....

  • Magic Number - Not about applets...

    This is a pretty silly question, but here goes.
    I am using a code checker to verify the style of the code I am writing and I am getting a number of warnings that 'n' is a magic number. I realize why Java uses magic numbers for Applets and such.
    I guess my question has to do with good programming practice. Is my cheker essentially saying that this hard-coded number should be preferrably set-up as a constant number somewhere in my system?
    I'd appreciate your thoughts.

    Yes, I guess so.
    Of course I don't know what code checker you're using, but in general a magic number in this context means that you're using an unexplained number.
    For instance, if you're using a for-loop that loops 20 times, and you're putting '20' in the loop itself (like: for (int j = 0; j < 20; j++) { ... }), it's a magic number. There's is no explanation offered why it's 20, so it's 'magic'.
    A better way to do this would be to define a static final int NUMBER_OF_LOOPS = 20 at some point in your code, preferrably with a short explanation about what it is and why it's 20 (and not 30) and then use that in your code.
    All numbers except 0 and 1 are considered 'magical' when unexplained.

  • Learning about applets

    Some help with the following problem would be most welcome. I would like to put some Duke stars up, but for some reason I do not have any.
    I am following the tutorials in Liang Introduction to Java Programming, Seventh Edition, and have just started on chapter 17, Applets and Multimedia. Although I have copied the first example as given in the book, it does not work. The browser gives me the message "Error. Click for Details." Clicking yields another error message: "The application failed to run. Click 'details' for more information." This time clicking the button, [details], opens a window containing the following:
    Java Plug-in 1.6.0_17
    Using JRE version 1.6.0_17-b04-248-10M3025 Java HotSpot(TM) Client VM
    User home directory = /Users/benjamin
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    ---------------------------------------------------- This is not helpful. I do not know what to do with this.
    The code that does not run is copied from the book (the package name is added by NetBeans), as follows:
    package learningapplets;
    import javax.swing.*;
    public class WelcomeApplet extends JApplet {
        public WelcomeApplet() {
        @Override
        public void init() {
            add(new JLabel("Welcome to Java", JLabel.CENTER));
    }The html page is:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Welcome Java Applet</title>
      </head>
      <body>
          <applet code = "WelcomeApplet.class"
              width = 350
              height = 200 >
          </applet>
      </body>
    </html>I am working on a MacBook Pro Notebook, and using NetBeans IDE, and fetching the html file with Firefox.
    file:///Users/benjamin/NetBeansProjects/LearningApplets/build/classes/learningapplets/WelcomeApplet.html
    The class file is in the same directory.
    I have tried cleaning and recompiling. Java is enabled on this browser. I have tried making xhtml markup, with no change in the outcome. I have tried Safari and Opera with the same results.
    I have tried replacing the <applet> tags with <object> tags, but this is worse; the browsers do not see anything at all.
    Edited by: Equitus on Feb 25, 2010 7:21 PM
    Edited by: Equitus on Feb 25, 2010 7:39 PM

    Equitus wrote:
    ..I had already tried using the valid markup, as follows: I'm glad you know about validation. It is a pity that ..
    ..This did not help, even though it is the markup used by the author from his site:
    http://www.cs.armstrong.edu/liang/intro7e/book/WelcomeApplet.html
    ..this author apparently has no clue. [http://validator.w3.org/check?uri=http%3A%2F%2Fwww.cs.armstrong.edu%2Fliang%2Fintro7e%2Fbook%2FWelcomeApplet.html&charset=(detect+automatically)&doctype=Inline&group=0].
    The author of that mess was apparently using a class that is not in a package. (My UA was able to guess what the author meant, and load that applet despite that rubbish pretending to be HTML).
    Also, adding the package name to the code property did not help.
    code="learningapplets.WelcomeApplet.class"
    I am not just making random guesses when I give you advice on applets. I have considerable experience with developing & deploying applets.
    And removing the .class made the situation worse. The browser did not see anything. There was not even an error message if .class was omitted.Did you try moving the packaged applet class to a subdirectory as I suggested?
    Also, you seemed to make a comment that implied you thought that if "Netbeans did it, then it must be right".
    Give up those fallacies right now.
    Netbeans is a powerful tool, but in the hands of someone that does not understand the underlying principles, it can make life a lot more complicated.

  • Something about applet and database?

    applet cant write and read from outer files.
    but can it read from database?if i don't modify my security policies.

    zhangv,
    We hava a web application with an applet in it that communicates with the server over HTTP. So, you need not worry about security. We use a multi-tiered environment. That is, the middle layer uses an application server (Sybase EAServer) and the backend layer is our database (Sybase ASE 12.5). Our application server fetches the data from the database and streams XML to the applet via a servlet. You can find a wonderful example for how this works in an article on Java world, entitled:
    Title: "A J2EE presentation pattern: Applets with servlets and XML"
    Subtitle: "Enhance your Web interfaces with powerful XML-configured applet components"
    http://www.javaworld.com/javaworld/jw-05-2002/jw-0524-j2ee.html
    Hope this helps
    TJJ

  • Java error, applet notinited

    Hello,
    I manage a few macs, and we use to scan using a printer/scanner on the network with a browser. From some computers (NOT ALL) the users receive an error "applet com.efi.appls.webtools.WebToolsApplet notinited". Is the same with Safari or Firefox. Anyone has any idea? (obviously all the macs are exactly the same, with mac os X 10.4.8, all upgrades done, Safari and Firefox last version).
    Thank you

    ok, the preferences are as shown in your picture on both computers. I have also deleted the files "in special folder" and the only thing changed is that the error received now is applet notloaded instead of notinited.
    Obviously the users can use another mac, so is not a big problem, but I can't really understand why 2 macs on 11 behave like this...
    Thank you for your help. If I will find a solution, I will post it.

Maybe you are looking for

  • Publishing: Sharepoint WorkSpace Vs OneDrive for business

    I've SharePoint 2013 on premise with OneDrive for business. I've published SharePoint Site Collection App with Web Application Proxy (WAP). When a user is at home, he can creates files on his OneDrive folder, these files are automatically synchronize

  • Reducing PDF File

    How do I reduce the size of a PDF file? It is now 1.9 MB and I would like it to be 150kb. It is just a photograph of me and I can't send it through to some email servers because it is too big. A

  • Problem in converting .txt to .pdf

    import java.io.*; import java.text.DecimalFormat; import java.util.*; public class StudentGrade public static void main (String[] args) throws IOException, FileNotFoundException //Declare Variables double test1, test2, test3, test4, test5; double ave

  • Strange issue with key authentication

    I just installed Arch again after being away for a few years. Almost everything is running smoothly, but I ran into a weird problem with openssh. Namely, I can successfully log in with a  key only if in /etc/ssh/sshd_config instead of the default Aut

  • RFC not found error

    Hi people, I have developed a Z RFC in R/3 system and the same is activated and used there. But when I try to use the same RFC in BW system through 'Pattern' function, it gives me as error that the Function Module not found. Do I need to create the s