Applet does not initialize in Java6u18 while it does in Java5u22

Hi,
We have a User running IE7 who had installed Java6. He even wasn't able to load the "Do I have Java installed" applet from the java.com website. The Java progress image ran eternally. We tried to reinstall the lastest version Java6u18 several times but with no success. In Firefox it worked.
Then we uninstalled Java6 und installed java5u22. This works with IE.
Can you image what is the problem?
Best regards
Michael

As a suggestion a GUI forum might get more responses.

Similar Messages

  • Applet still not initialized.

    Hello, I am a student attempting to complete a GUI Currency Converter. My applet will not initialize. I have read through some of the Applet initialization errors but am having some trouble understanding where to proceed. My code is rather large, about 400 lines, so I won't post the thing. I have only done very basic Java, and so I am very new to this. Thank you for your help.

    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import java.util.*;
    public class CurrencyApp extends JApplet
              implements ActionListener
         public int currency1;
         public int currency2;
         public ButtonGroup group1;
         public ButtonGroup group2;
         public JToggleButton button0;
         public JToggleButton button1;
         public JToggleButton button2;
         public JToggleButton button3;
         public JToggleButton button4;
         public JToggleButton button5;
         public JToggleButton button6;
         public JToggleButton button7;
         public JToggleButton button8;
         public JToggleButton button9;
         public JToggleButton button10;
         public JToggleButton button11;
         public JToggleButton button12;
         public JToggleButton button13;
         public JToggleButton button14;
         public JToggleButton button15;
         public JToggleButton button16;
         public JToggleButton button17;
         public JToggleButton button18;
         public JToggleButton button19;
         public JToggleButton button20;
         public JToggleButton button21;
         public JTextField inputfield;
         public JLabel outputlabel;
         String s1;
         public void init()
         JToggleButton button0= new JToggleButton("Euros");
         JToggleButton button1= new JToggleButton("Canadian Dollars");
         JToggleButton button2= new JToggleButton("British Pounds Sterling");
         JToggleButton button3= new JToggleButton("Japanese Yen");
         JToggleButton button4= new JToggleButton("Mexican Pesos");
         JToggleButton button5= new JToggleButton("Danish Kroner");
         JToggleButton button6= new JToggleButton("Russian Rubles");
         JToggleButton button7= new JToggleButton("Indian Rupees");
         JToggleButton button8= new JToggleButton("Australian Dollars");
         JToggleButton button9= new JToggleButton("Swiss Francs");
         JToggleButton button10= new JToggleButton("US Dollars");
         button0.addActionListener(this);
         button1.addActionListener(this);
         button2.addActionListener(this);
         button3.addActionListener(this);
         button4.addActionListener(this);
         button5.addActionListener(this);
         button6.addActionListener(this);
         button7.addActionListener(this);
         button8.addActionListener(this);
         button9.addActionListener(this);
         button10.addActionListener(this);
         group1.add(button0);
         group1.add(button1);
         group1.add(button2);
         group1.add(button3);
         group1.add(button4);
         group1.add(button5);
         group1.add(button6);
         group1.add(button7);
         group1.add(button8);
         group1.add(button9);
         group1.add(button10);
         Box box=Box.createVerticalBox();
         box.add(button0);
         box.add(Box.createHorizontalStrut(10));
         box.add(button1);
         box.add(Box.createHorizontalStrut(10));
         box.add(button2);
         box.add(Box.createHorizontalStrut(10));
         box.add(button3);
         box.add(Box.createHorizontalStrut(10));
         box.add(button4);
         box.add(Box.createHorizontalStrut(10));
         box.add(button5);
         box.add(Box.createHorizontalStrut(10));
         box.add(button6);
         box.add(Box.createHorizontalStrut(10));
         box.add(button7);
         box.add(Box.createHorizontalStrut(10));
         box.add(button8);
         box.add(Box.createHorizontalStrut(10));
         box.add(button9);
         box.add(Box.createHorizontalStrut(10));
         box.add(button10);
         box.add(Box.createHorizontalStrut(10));
         JToggleButton button11= new JToggleButton("Euros");
         JToggleButton button12= new JToggleButton("Canadian Dollars");
         JToggleButton button13= new JToggleButton("British Pounds Sterling");
         JToggleButton button14= new JToggleButton("Japanese Yen");
         JToggleButton button15= new JToggleButton("Mexican Pesos");
         JToggleButton button16= new JToggleButton("Danish Kroner");
         JToggleButton button17= new JToggleButton("Russian Rubles");
         JToggleButton button18= new JToggleButton("Indian Rupees");
         JToggleButton button19= new JToggleButton("Australian Dollars");
         JToggleButton button20= new JToggleButton("Swiss Francs");
         JToggleButton button21= new JToggleButton("US Dollars");
         button11.addActionListener(this);
         button12.addActionListener(this);
         button13.addActionListener(this);
         button14.addActionListener(this);
         button15.addActionListener(this);
         button16.addActionListener(this);
         button17.addActionListener(this);
         button18.addActionListener(this);
         button19.addActionListener(this);
         button20.addActionListener(this);
         button21.addActionListener(this);
         group2.add(button11);
         group2.add(button12);
         group2.add(button13);
         group2.add(button14);
         group2.add(button15);
         group2.add(button16);
         group2.add(button17);
         group2.add(button18);
         group2.add(button19);
         group2.add(button20);
         group2.add(button21);
         inputfield.addActionListener(this);
         Box box2=Box.createVerticalBox();
         box2.add(button11);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button12);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button13);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button14);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button15);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button16);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button17);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button18);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button19);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button20);
         box2.add(Box.createHorizontalStrut(10));
         box2.add(button21);
         box2.add(Box.createHorizontalStrut(10));
         JTextField input=new JTextField("Input the amount you have here:", 5);
         JLabel output= new JLabel("Here is the converted amount:", 5);
         Container c=getContentPane();
         c.add(box, BorderLayout.WEST);
         c.add(box2, BorderLayout.EAST);
         c.add(inputfield, BorderLayout.CENTER);
         c.add(outputlabel, BorderLayout.SOUTH);
              public void actionPerformed(ActionEvent F)
              JToggleButton f= (JToggleButton)F.getSource();
              if(f == button0) currency1= 0;
              else if(f == button1) currency1=1;
              else if(f == button2) currency1=2;
              else if(f == button3) currency1=3;
              else if(f == button4) currency1=4;
              else if(f == button5) currency1=5;
              else if(f == button6) currency1=6;
              else if(f == button7) currency1=7;
              else if(f == button8) currency1=8;
              else if(f == button9) currency1=9;
              else if(f == button10) currency1=10;
              else if(f == button11) currency2= 0;
              else if(f == button12) currency2=1;
              else if(f == button13) currency2=2;
              else if(f == button14) currency2=3;
              else if(f == button15) currency2=4;
              else if(f == button16) currency2=5;
              else if(f == button17) currency2=6;
              else if(f == button18) currency2=7;
              else if(f == button19) currency2=8;
              else if(f == button20) currency2=9;
              else if(f == button21) currency2=10;
              String s1=(String)F.getSource();
              s1=inputfield.getText();
              inputfield.setText(s1+"");
              double input= Double.parseDouble(s1);
              double output=this.calculate(input);
              String s2=String.valueOf(output);
                   public double calculate (double x)
                   switch (currency1){
                        case 0: switch (currency2) {
                             case 0: x=x;
                             case 1: x=x*1.51;
                             case 2: x=x*0.69;
                             case 3: x= x*125.19;
                             case 4: x=x*12.64;
                             case 5: x=x*7.43;
                             case 6: x=x*34.22;
                             case 7: x=x*51.97;
                             case 8: x=x*1.61;
                             case 9: x=x*1.57;
                             case 10: x=x*1.15;}
                        break;
                        case 1: switch (currency2){
                             case 0: x=x*0.66;
                             case 1: x=x;
                             case 2: x=x*0.46;
                             case 3: x=x*82.86;
                             case 4: x=x*8.36;
                             case 5: x=x*4.92;
                             case 6: x=x*22.65;
                             case 7: x= x*34.4;
                             case 8: x=x*1.07;
                             case 9: x=x*1.04;
                             case 10: x=x*0.76;}
                        break;
                        case 2: switch (currency2) {
                             case 0: x=x*1.43;
                             case 1: x=x*2.2;
                             case 2: x= x;
                             case 3: x= x*182.54;
                             case 4: x= x*18.78;
                             case 5: x=x*10.65;
                             case 6: x=x*49.99;
                             case 7: x=x*75.99;
                             case 8: x=x*2.35;
                             case 9: x= x*2.24;
                             case 10: x= x*1.69;}
                        break;
                        case 3: switch (currency2) {
                             case 0: x= x*0.0079;
                             case 1: x= x*0.012;
                             case 2: x= x*0.0055;
                             case 3: x= x;
                             case 4: x= x*0.1031;
                             case 5: x= x*0.0585;
                             case 6: x= x*0.2746;
                             case 7: x= x*0.4198;
                             case 8: x= x*0.0128;
                             case 9: x= x*0.0123;
                             case 10: x= x*0.0093;}
                        break;
                        case 4: switch(currency2) {
                             case 0: x= x*0.0763;
                             case 1: x= x*0.117;
                             case 2: x= x*0.0531;
                             case 3: x= x*9.69;
                             case 4: x= x;
                             case 5: x= x*0.5674;
                             case 6: x= x*2.66;
                             case 7: x= x*4.07;
                             case 8: x= x*0.1243;
                             case 9: x= x*0.119;
                             case 10: x= x*0.0897;}
                        break;
                        case 5: switch (currency2) {
                             case 0: x= x*0.1344;
                             case 1: x= x*0.2062;
                             case 2: x= x*0.0936;
                             case 3: x= x*17.08;
                             case 4: x= x*1.762;
                             case 5: x= x;
                             case 6: x= x*4.69;
                             case 7: x= x*7.17;
                             case 8: x= x*0.219;
                             case 9: x= x*0.21;
                             case 10: x= x*0.1581;}
                        break;
                        case 6: switch (currency2) {
                             case 0: x= x*0.0287;
                             case 1: x= x*0.044;
                             case 2: x= x*0.0199;
                             case 3: x= x*3.64;
                             case 4: x= x*0.3757;
                             case 5: x= x*0.2132;
                             case 6: x= x;
                             case 7: x= x*1.53;
                             case 8: x= x*0.0467;
                             case 9: x= x*0.0449;
                             case 10: x= x*0.0337;}
                        break;
                        case 7: switch (currency2) {
                             case 0: x= x*0.0187;
                             case 1: x= x*0.0287;
                             case 2: x= x*0.013;
                             case 3: x= x*2.38;
                             case 4: x= x*0.2457;
                             case 5: x= x*0.1394;
                             case 6: x= x*0.654;
                             case 7: x= x;
                             case 8: x= x*0.031;
                             case 9: x= x*0.0293;
                             case 10: x= x*0.022;}
                        break;     
                        case 8: switch (currency2) {
                             case 0: x= x*0.61;
                             case 1: x= x*0.94;
                             case 2: x= x*0.427;
                             case 3: x= x*77.97;
                             case 4: x= x*8.04;
                             case 5: x= x*4.56;
                             case 6: x= x*21.41;
                             case 7: x= x*32.73;
                             case 8: x= x;
                             case 9: x= x*0.96;
                             case 10: x= x*0.72;}
                        break;                    
                        case 9: switch (currency2) {
                             case 0: x= x*0.64;
                             case 1: x= x*0.98;
                             case 2: x= x*0.44;
                             case 3: x= x*81.18;
                             case 4: x= x*8.37;
                             case 5: x= x*4.75;
                             case 6: x= x*22.29;
                             case 7: x= x*34.08;
                             case 8: x= x*1.04;
                             case 9: x= x;
                             case 10: x= x*0.75;}
                        break;          
                        case 10: switch (currency2) {
                             case 0: x= x*0.85;
                             case 1: x= x*1.3;
                             case 2: x= x*0.59;
                             case 3: x= x*108.03;
                             case 4: x= x*11.14;
                             case 5: x= x*6.32;
                             case 6: x= x*29.66;
                             case 7: x= x*45.35;
                             case 8: x= x*1.39;
                             case 9: x= x*1.33;
                             case 10: x= x;}
                        break;
                        return x;

  • Signed applet does not grant AudioPermission "record"

    From what I gather, if I have a trusted signed applet sitting on a webpage and
    the visitor accepts (runs) the applet, then they should not need to have:
    grant {
    permission javax.sound.sampled.AudioPermission "record";
    in their java policy file. Well I have done all this (with a certificate from
    Thawte) and posted a thorough example at:
    http://www.livesite.net/JavaSoundTest
    At the bottom of that page there is a "Check permissions" link which will alert
    true/false if we have record permission. Clicking any "Record" link will
    attempt to open a TargetDataLine.
    My experience (and problem) is: record permission must be granted even though
    the applet is signed by a trusted CA.
    I would very much appreciate any help.
    Are you able to record/playback (without granting record permission in your
    java policy files) with the JavaSoundTest applet webpage?
    Is there something I am missing?
    ------ More information ------
    Java Control Panel -> Advance -> Security
    'allow user to grant permissions to signed content' is checked
    Reproducable on:
    MS NT4 w/ IE6
    MS Windows 2000 w/ Firefox 1.5
    MS Windows XP w/ Firefox 1.5
    MS Windows XP w/ IE6
    Fedora FC6 w/ Firefox 2.0
    Also, this happens with a commented-out record permission in the user
    .java.policy file, or when the policy file does not exist.
    ------ Source code: opening the target data line ------
    Using the JavaSoundTest applet page without granted permission, clicking a
    record link will yield this exception in the java console:
    java.security.AccessControlException: access denied (javax.sound.sampled.AudioPermission record)
    at java.security.AccessControlContext.checkPermission
    at java.security.AccessController.checkPermission
    at java.lang.SecurityManager.checkPermission
    at com.sun.media.sound.JSSecurityManager.checkRecordPermission
    at com.sun.media.sound.DirectAudioDevice$DirectDL.implOpen
    at com.sun.media.sound.AbstractDataLine.open
    at net.livesite.jsound.Recorder.run(Recorder.java:161)
    while opening a TargetDataLine as:
    23 private static TargetDataLine line;
    157 line = (TargetDataLine) AudioSystem.getLine( lineInfo );
    158
    159 try
    160 {
    161 line.open( format, (int) format.getSampleRate() );
    162 }
    ------ Source code: Using the security manager ------
    The "Check permissions" link on the TestJavaSound applet page calls this method:
    191 public boolean hasSoundRecPriv()
    192 {
    193 boolean ret = false;
    194
    195 try
    196 {
    197 SecurityManager sm = System.getSecurityManager();
    198 if (sm != null)
    199 {
    200 sm.checkPermission(new AudioPermission("record"));
    201 }
    202 ret = true;
    203 }
    204 catch(SecurityException e)
    205 {
    206 ret = false;
    207 }
    208
    209 return ret;
    210 }
    (This is a continued post from JAVASOUND-INTEREST at SUN.COM)

    Is there something I am missing?1) Applets are not well supported by Sun,
    and are inherently problematic as a reult
    of that.
    2) My experience suggests that the diagnotics
    applet is not reliable for detecting JMF.
    3) I guess the JMF applet is doing checks of
    policy files, despite the signed code.
    You might circumvent most of these problems,
    by using web-start to launch an application.
    Here are some of my tests at launching
    JMF using web-start.
    http://www.javasaver.com/testjs/jmf/

  • Missing-- package javax.applet does not exist

    While compiling a short program to work with an image in jcreator I get a javax.applet does not exist error. I've checked the boards for this error as well as the bin dir and didn't see this package in there. Am I looking in the right place?
    C:\j2sdk1.4.1_02\bin...Also looked in the jre folder as there were some others with similar problems.
    Thanks in advance
    Baccoitalia

    Chuck,
    Here's the error I get:
    F:\JCreator Pro\MyProjects\pos407\smileyspot\smiley\Smiley.java:7: package javax.applet does not exist
    import javax.applet.*;
    I am importing following with the program:
    import javax.applet.*;
    import java.awt.*;
    import javax.swing.*;
    Tks,
    Baccoitalia

  • Applet does not work after conversion

    Hi,
    A have an html page on with a use an applet. The applet is downloaded in two cab files for the internet explorer.
    The applet and the download works fine without the java plugin.
    When I convert this page to using the html converter the applet does not work
    The error is
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I think he fails on the downlad of the second cab file....
    Sombody any ideas,
    Thank
    Tom Van de Velde

    I recently moved to programming applets and this problem gave me many
    headaches. I know that the java compiler is supposed to compile with an
    appropriate version, but I suspect that there may be a few flaws in the
    system.
    Try compiling with a command like this to force a 1.1 compilation:
    "javac -target 1.1 yourfile.java"
    This enabled my applets to load in Netscape 4.6, something they wouldn't do before.
    Installing the java plugin seems to fix the problem on other browsers. This might
    be a new bug introduced by Java 1.4, since I had very few problems with
    Java 1.3...I dunno...that's speculation...

  • Applet does not load on app server when Free Design Layout

    Hi,
    I have to embed a an applet in a webpage of an web application. Before I go on to anything.. let me first tell you, I am using Netbeans 6.0
    As shown in the tuorial:
    [http://www.netbeans.org/kb/articles/tutorial-applets-40.html]
    1. I first made the "Applet" source say HelloApplet. java. After compiling and running it I get the HelloApplet.jar.
    2. I created a WebApplication and then from the properties -> packaging -> I "Add Project" HelloApplet.jar.
    3. Then I a webpage I "embeded" the applet.
    4. I run the web app and the applet gets loaded and everything is just fine.
    But before I go on I must tell you that the applet was designed in Null Layout. Now I edited the applet source once again and changed the layout to Free Design Layout*. ( this is available from Netbeans..on the HelloApplet.java .. go to the design view.. right click on the form and from the context menu you can change the layout to FreeDesign or whatever you might want).
    When I expand the "Libraries" node I see the that the library Swing Layout Extensions - swing-layout-1.0.3.jar has been added.
    When I "run" the "HelloApplet.java" file, the applet is shown in the appletviewer. No problems with that.
    But!
    When I try to Clean & Build and Run the WebApplication, the applet does not get loaded. On inspecting the java console I see the following error:
    java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: org.jdesktop.layout.GroupLayout$Group
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 10 moreIt clearly shows that the Free Design Layout has something to do with the GroupLayout which can be found by expanding the "Swing Layout Extensions - swing-layout-1.0.3.jar". Now when the HelloApplet.jar is created only the HelloApplet.class file gets included together with some other data but NOT the swing extensions. Hence when I run the web app the class file looks for the GroupLayout.class definition but can find it in the jar as its not included when the HelloApplet.jar is created.
    But with null layout there isint a problem because null layout takes the definitions from the JRE on the machine.. and so it runs without a hitch.
    My Question is : How can I run the applet with Free Design Layout? or is it possible to package the swing layout extensions in the HelloApplet.jar?<</u>
    Thanks for all your replies.
    Cheers.
    Edited by: arijit_datta on May 15, 2008 4:07 PM

    Solved.
    Here is the solution:
    [http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html|http://www.nabble.com/Applet-does-not-load-on-app-server-when-Free-Design-Layout-to17259115.html]
    Cheers..
    Edited by: arijit_datta on May 16, 2008 7:41 AM

  • Everytime I use firefox to connect to the internet I get an alert saying that firefox could not initialize the applications security component. What does this mean and how do I fix it?

    When I use firefox to get on to the web I get the following message everytime: "Alert: Could not initialize the applications security component. The most likely cause is problems with files in your applications pforfile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security feactures." Once I click the "OK button" at the bottom of the alert box firefox starts but does not act right. For instance it will not let me look for software updates. When I click on "Check for Updates" from the "Help" drop down menu I get a message stating: "There were problems checking for, downloading, or installing this update. Firefox could not be updated because: Update XML file malformed (200). You can update firefox manually by visiting this link and downloading the latest version."

    The following support articles should help:
    * https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component
    * https://support.mozilla.com/kb/AUS+Update+XML+File+Malformed+200

  • ITEM IS NOT RELEVANT FOR BILLING WHILE DOING STO (VF01)

    HI
    I am getting an error while doing STO in CIN
    Item is not relevant for billing while doing VF01 STO proforma invoice JEX with delivery document type NL and item category NLN
    I searched the forum but not able to get an appropriate solution for this.
    Kindly revert me on the same
    Regards
    MANOJ

    Hi Manoj,
    The only reason for the error you are encountering are,
    A. The item category missing at the item level in the copying controls from delivery to JEX (billing type)
    Kindly check throughly and confirm,
    If it is there , then delete the configuration , i.e. item category from the copying controls and do it again.. Even if this do not resolve your issue, ask your technical team to debugg the billing document during creation and check.

  • Applet does not start after JRE 1.5 installation

    Hi,
    When I go to my webpage where I have an applet that requires Java 1.5..the browsers are prompting for Java installation (ActiveX component install on IE or Firefox plugin for JRE installation). But once the Java install completes the applet does not start automatically. The same code used to work nicely with Java 1.4. The applet used to automatically start and run once the JRE install completed. But with JRE 1.5 it does not start. If I do a refresh on the browser it again prompts for java installation. If I open new browser window and go to the URL the applet starts. Please let me know how to get the applet to start automatically after JRE 1.5 installation.
    Thanks,
    Vijay

    We figured out the problem. the CLASSID was not the right one. Once we changed it...its working fine.
    Vijay

  • Applet does not start after Java 1.5 installation

    Hi,
    When I go to my webpage where I have an applet that requires Java 1.5..the browsers are prompting for Java installation (ActiveX component install on IE or Firefox plugin for JRE installation). But once the Java install completes the applet does not start automatically. The same code used to work nicely with Java 1.4. The applet used to automatically start and run once the JRE install completed. But with JRE 1.5 it does not start. If I do a refresh on the browser it again prompts for java installation. If open new browser window and go to the URL the applet starts. Please let me know how to get the applet to start automatically after JRE 1.5 installation.
    Thanks,
    Vijay

    We figured out the problem. the CLASSID was not the right one. Once we changed it...its working fine.
    Vijay

  • Applet does not load in IE when hosted in form via SHDocVw.dll

    Hi
    I have a signed applet that usually works well in IE and Mozilla FireFox.
    It shows a popup window with the security question Yes/No/Always and works great thereafter.
    However
    We have now developed a Vb.Net application which hosts the SHDocVw.dll and now when for example I navigate to the web page within this embedded browser control from Microsoft the applet does not load and the popup window does not appear, when trying to access it via clientside scriptring it does not find the applet object.
    // this fails when called from embedded browser control
    <script>
    document.applets[0].prepareControl();
    </script>
    Please help me I would really like to get the applet to work when using this new vb.net application with the embedded browser control because it is becoming our company's standard to hos apps in this new app and not open a new instance of IE for each application.
    Thanks
    Ian Coetzer

    What does the trace say?
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}
    If no trace is created my guess is that the jre is never started, try the <object tag
    instead for your applet (html page) because your browser tries to run the applet with msjvm.

  • Applet does not get loaded when viewed in a browser

    Hi,
    I have an applet,which works fine when I use appletviewer to see it. But from the browser, the applet does not get loaded.
    An error appears at the bottom of the browser that load: class not found.
    Any suggestions...please..
    Thank you....
    Pooja

    If you are using Internet Explorer, you should check to see if your browser is set to use Sun's JRE that came with your download of the SDK. (If you didn't install the JRE, you need to go back and run that on your machine. You can check to see if you are using Java's runtime enviornment (JRE) in Internet Explorer by opening IE and going to Tools --> Internet Options... --> and then going to the Advanced tab. Scroll down and make sure the box next to Java Sun "use Java 2 for <applet>" is checked. If that option is not available, you need to install the JRE.
    If that doesn't help, try using the HTML converter that comes with the SDK. It'll take your current HTML page, and you can customize it to force a download and/or usage of the JRE for applet viewing if for your particular browser.
    Hope one of these helps!

  • Could not initialize variable. An error occurs while initializing BPEL .

    I have the following error:
    **Could not initialize variable. An error occurs while initializing BPEL variable inputVariable; the schema processor cannot find the element {http://xmlns.oracle.com/MRTApplicationWorkflow/Project1/BPELProcess1}processRequest in the following schemas: oracle.fabric.common.wsdl.SchemaManager@e92e05. The XSD element on which the variable was based was not properly defined in XSD or the WSDL. Ensure that the element named in the error message is valid in the XSD or the WSDL.**
    My process input xsd below:
    <?xml version="1.0" encoding="UTF-8"?>
    <schema attributeFormDefault="unqualified"
         elementFormDefault="qualified"
         targetNamespace="http://xmlns.oracle.com/MRTApplicationWorkflow/Project1/BPELProcess1"
         xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:q1="http://schemas.datacontract.org/2004/07/WM.Services.MRTPortfolioService.BusinessObjects">
    <import schemaLocation="MRTWorkflowService.svc_xsd_xsd2.xsd"
    namespace="http://schemas.datacontract.org/2004/07/WM.Services.MRTPortfolioService.BusinessObjects"/>
    <element name="processRequest">
              <complexType>
                   <sequence>
                        <element name="institutionid" type="int" />
    <element name="brokerid" type="long"/>
    <element name="accountid" type="string"/>
                   </sequence>
              </complexType>
         </element>
         <element name="processResponse">
              <complexType>
                   <sequence>
                        <element name="result" type="q1:ArrayOfMRTProposedOrder"
    />
                   </sequence>
              </complexType>
         </element>
    </schema>
    Please help me with this isssue.
    I am using BPEL 2.0.

    Please check your XSD and dependant XSD's whether it contains any special characters.
    I solved the same issue in my BPEL process by commenting the special characters included in <documentation> element of XSD.

  • EEM applet does not support extended ping ?

    Hi does anybody know if EEM applet does not support any extended Ping in a cli action ?
    This works:
    action 1000 cli command "ping ip 10.161.255.5"
    These statements does not work ?
    action 1000 cli command "ping ip 10.161.255.5 repeat 10 source Loopback0"
    action 1000 cli command "ping vrf TESTVRF ip 10.161.255.5 repeat 20 source Loopback0"
    I  found another possibility how to achive extended ping in EEM like following
    event manager applet ping
    event none sync yes
    action 100 cli command "enable"
    action 101 cli command "ping" pattern "[ip]"
    action 102 cli command "ip" pattern "address"
    action 103 cli command "10.161.255.5" pattern "count"
    action 104 cli command "20" pattern "size"
    action 105 cli command "100" pattern "seconds"
    action 106 cli command "2" pattern "commands"
    action 107 cli command "y" pattern "interface"
    action 108 cli command "Loopback0" pattern "service"
    action 109 cli command "0" pattern "header"
    action 110 cli command "no" pattern "data"
    action 111 cli command "no" pattern "pattern"
    action 112 cli command "0xABCD" pattern "Verbose"
    action 113 cli command " " pattern "size"
    action 114 cli command "n" event manager applet ping
    bu there is also no way to specify the VRF ?
    Any Ideas ?
    Thx
    Hubert

    Hi found failure,
    extended ping needs to be executed in priviledged mode, so need to enable in advance , then it works
    thx Bruno for the hint
    Hubert

  • Photoshop does not initialize

    Photoshop v6.0 (Yeah, yeah, I know. It's old.)
    WinXP sp2 (Yeah, yeah, I know. There's a reason.)
    In a user account that does not have Admin priveleges, the following message appears shortly after Photoshop starts:
    Could not initialize Photoshop because the file is locked. Use 'Properties' in the Window Explorer to unlock the file.
    Well!
    There are nearly 300,000 files on this system. Which one do you suppose is "the file"?
    If I start PS in an Admin account, there is no such problem. This implies it is not a locked file issue but a privelege issue. Nevertheless, how do I discover where "THE FILE" is?

    Mylenium provided a tool, Process Monitor, that utlimately led to a solution. The trace showed an attempted access to an alternate temporary folder that failed, then tried the root of the C: drive, which also failed.
    A bit of background. When I built the system I made the system disk too small. I did not realize this until it was much too inconvenient to re-install. The previous win2k system had a 2GB system disk and lots of room left over. WinXP got a 4GB system disk and there is only 200MB free space even with the filesystem in compressed mode. (I was shocked, shocked!, that XP was so much larger.) I simply do not had the desire to rebuild XP from scratch again if I can at all avoid it; the Windows installer is a screaming PITA when there is more than one disk drive to choose for installation and it is not partition 0 of disk 0.
    The highly constrained system disk led to modifying System and User environment variables to use alternate locations for temporary folders and files on disks that do have lots of free space. Getting programs to actually use the non-standard locations is a challenge.
    My mistake there was not modifying the permissions of the alternate folders to allow non-admin users to write to the folders. Urk.
    "THE FILE" that PS so vaguely mentioned in the error message was a temporary scratch file (~PSxxxxx.tmp) of some sort to which it expected to have write permissions. Because of the permission error for the alternate temporary folders, PS fell back to C:\, which also does not allow write permissions to non-admin users: "Bzzt! An error occurred. Good luck."
    By giving lowly users write permissions to the alternate disks (no reason not to), Photoshop now starts. It even has allowed a scratch disk that is not on the C: drive!

Maybe you are looking for

  • Showing as open qty in P.O.

    Hi guru's, Can anybody guide "my end user has made a service P.O. & then ML81N & MIRO, for some quantity, he has reversed the goods receipt / ML81N , but the invoice receipt is not cancelled now when he is doing the goods receipt / ML81N the error sh

  • Backup_restore problem with sapdb

    Hello, i'm searching a way to backup my sapdb of my content server. And I'm using dbmcli  at the moment. so i made 2 backup_media stores with the following instruction <i>dbmcli -d SDB -u superdba,admin backup_media_put datafiles J:\Backup_content\da

  • DMS - QM Notification link

    Dear All, I have configured the document type for Quality Notification document and assign the objects and object link also. I have created a document throough CV01n and assign the Notification number in the object link. but when i tried to assign th

  • Can I Add the Trash to the side bar

    Can I Add the Trash to the side bar I want the trash on my side bar every time i open a folder i want it somewhere here

  • BSP's in e-Learning

    Hi,   I found the following two bsp's related to e-Learning:   HCM_LSO_OLD & HCM_LEARNING   Which one is the updated one and which one should i use?   And please let me know whether we need EP for this or can we store the content in the SAP knowledge