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;

Similar Messages

  • Signed JAVA applet still not connecting.

    I have a signed applet that works in my development environment, but as soon as I run it from my website, I get this:
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@1754ad2, refcount=1
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@a7c45e
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: completed perf rollup
    network: Connecting socket://XXX.XX.X.XXX:XXXX with proxy=DIRECT
    And that's it, it stops. It never loads the UI, or anything.
    I believe the signing worked. I accepted the security certificate when it came up. I'm not getting any other errors (Like a security error).
    any help would be appreciated.
    I realize this isn't a lot of information, but It works fine in the IDE, so I don't think it's the code. I have stack traces in every try/catch, so I should see any exceptions. Also, this is being served by the same server as the web-page. It didn't work before I signed it, so I thought that would fix it.
    The only error like this that I find on the forums is an unsigned applet not working after it's moved to the server.
    Anyone have any ideas?
    Message was edited by:
    G_Bishop

    Make sure that the remote socket you are connecting to, i'm assuming probably your home computer? has the port(s) at your (local) router forwarding to your computer,or whichever computer is listening for the connection.
    -Airplane

  • Update 10.6.8 and the combo pack v1.1 but java applets still not working

    Checked all the java settings in the browsers and in java preferences and they are correct.
    Tried both Firefox 5.0.1 and Safari 5.0.5 (6533.21.1) neither worked. Runing Java SE 6 (both 64 and 32 bit) version 1.6.0_26-b03-384
    Even tried to uncheck and disable then re-enable java and restart, cleared cache, etc. Tried it all.
    Thought the combo update version 1.1 would help. Nope didn't do anything.
    Wanted to upgrade the OS today, so installed all current updates. Never upgraded the OS because I want to have this fixed first.
    I don't use time machine since I don't store my folder system locally, so I can't revert back before the OS updates. Don't want to reinstall the OS, actually can't even remember where I put it. Any suggestions? When is the issue going to be fixed?
    Checked around on a dozen or so message boards, seems like this is happen quite a bit. Even heard upgrading to the new OS has the same issue.
    So, fustrated. Need the java applet working asap.

    None of those things you mentioned were what I suggested.
    I'm guessing the "ctrl click in printer preferences" means you Reset the Printing System?
    If so, that is what I would have suggested if deleting it by selecting the ( - ) button and then adding it with the ( + ) button.
    But, if HP has a fix, it likely needs to update its drivers.

  • I get this message when trying to open a file from my company cloud: Error: This action could not be taken because the applet has not initialized. What do I need to do to be able to look at a file? Thank you!

    Help!

    There is software you installed to work with your company's cloud service, update it or talk to the developer.
    If it's Apple's software,  then run through this list of fixes.
    ..Step by Step to fix your Mac

  • Chat applet not initialized???

    OS X on iMac...try to log in yahoo Chat but I get an error message " applet not initialized " I check every HELP suggestion but none will do nor does it properly address the issue. How does one initialize applet? Some say uninstall Java then re-install but OS X doesn't allow me to uninstall JAVA which came preinstalled. The funny thing is that the bottom portion of the yahoo chat site works but the chat area is blank.
    Can anyone help? .Mac support guys are useless they only want money! they will not offer any assistance until a payment is made. Even then they can't guarantee anything. can anyone help me? I want to CHAT ON YAHOO.
    David no say in yahoo.

    Example settings for chat, based on Safari browser:
    In Safari, select Preferences > Security > Web Content. Make sure the three check boxes pertaining to Java - "Enable Plugins", "Enable Java" and "Enable JavaScript" are active.
    Some web chat providers also require that you install their client software.
    Having never used such services, I do not know if this applies to Yahoo, or if they provide suitable client software for Mac OS X users.

  • "applet not initialized " error message  HELP !

    My applet compiles ok but when I try to run it at the bottom of the screen it says
    start : "applet not initialized"
    note - it works ok compiling from the Window console and then opening
    the .html file in the browser, but when I try the same applet in the
    BlueJ IDE ....that is when I get an error message.
    Thank you in advance
    import java.awt.*;
    import objectdraw.*;
    //A program that produces an animation of the rising and setting sun
    //The animation is driven by dragging the mouse
    public class ScrollingSun extends WindowController
    private FilledOval sun; // circle that represents the sun
    //Place the sun and some brief instructions on the screen
    public void begin()
    sun = new FilledOval(100,150,100,100,canvas);
    sun.setColor(Color.yellow);
    new Text("Drag the mouse up or down", 20,20,canvas);
    //Move the sun to follow the mouse's vertical motion
    public void onMouseDrag(Location mousePosition)
    sun.moveTo(100,mousePosition.getY() );
    <html>
    <head>
    <title> ScrollingSun
    </title>
    <body>
    <applet
    archive = "objectdraw.jar"
    codeBase = "."
    code = "ScrollingSun.class" width = 800 height = 800 >
    </applet>
    </body>
    </html>

    I put a start() around the begin() method
    and a public void init() method around the onMouseDrag() method
    but I am getting an "illegal start of expression" error message
    Thank you for your advice
    import java.awt.*;
    import objectdraw.*;
    //A program that produces an animation of the rising and setting sun
    //The animation is driven by dragging the mouse
    public class ScrollingSun extends WindowController
       private FilledOval sun;   // circle that represents the sun
      public void start()
          //Place the sun and some brief instructions on the screen
          public void begin()
             sun = new FilledOval(100,150,100,100,canvas);
             sun.setColor(Color.yellow);
             new Text("Drag the mouse up or down", 20,20,canvas);
       public void init()
           //Move the sun to follow the mouse's vertical motion
           public void onMouseDrag(Location mousePosition)
             sun.moveTo(100,mousePosition.getY() );
    }

  • Applet not initialized, when I uninstall JRE1.4.1_24 on Win NT 4.0

    We have uninstalled JRE1.4.1_24 from Win NT4.0 system and installed JRE1.3.1_08. Applet not initialized error coming up when the broser tries to open applet. Please help.

    The Windows Java uninstall doesn't do a good job cleaning up after itself.
    I ended up having to reinstall JRE1.4 to getting it working again.
    Eugenio

  • First please read this- applet not initialized

    I read forums topic which is relational with applet errors but I couldnt solve my problem.
    I developed a program with php and mysql.there isnt any printing library for php under linux.so I am using an applet for printing.I could use javascript but I dont want to show printer dialog so I chose java applet.in my htdocs directory I put class file and all other php files are there too.when I want to run this php file which has inside applet tag it shows me "applet not initialized".so can you help me for this?that applet works on my pc but in server it didnt work.what is wrong with server or apache?I set up j2sdk to server too but I couldnt solve this problem something wrong with apache maybe it cant find the class file or do I have to recognize java files to apache like php?
    it is really important for me.if you can help I ll be glad.thanks for all

    I developed a program with php and mysql.in php file I am using applet tag to print out some informations.when I connected from client to the server.in that page I cant run applet.in client browser I have java plugin too.if I tried applets and also this print applet in my laptop it is working but if I put them into the server and if I connect from client applet isnt working problem is this.please someone help me

  • Issue: 'Start Applet not initialized'.

    I can't debug this program? Can you help?
    Thanks!
    import java.text.NumberFormat;
    public class Account
    private final double RATE = 0.035; // interest rate of 3.5%
    private long acctNumber;
    private double balance;
    private String name;
    // Sets up the account by defining its owner, account number,
    // and initial balance.
    public Account (String owner, long account, double initial)
    name = owner;
    acctNumber = account;
    balance = initial;
    // Deposits the specified amount into the account. Returns the
    // new balance.
    public double deposit (double amount)
    balance = balance + amount;
    return balance;
    // Withdraws the specified amount from the account and applies
    // the fee. Returns the new balance.
    public double withdraw (double amount, double fee)
    balance = balance - amount - fee;
    return balance;
    // Adds interest to the account and returns the new balance.
    public double addInterest ()
    balance += (balance * RATE);
    return balance;
    // Returns the current balance of the account.
    public double getBalance ()
    return balance;
    // Returns a one-line description of the account as a string.
    public String toString ()
    NumberFormat fmt = NumberFormat.getCurrencyInstance();
    return (acctNumber + "\t" + name + "\t" + fmt.format(balance));
    }

    AndrewThompson64 wrote:
    Melanie_Green wrote:
    robert_png wrote:
    I'm afraid I don't understand what you meant.
    When I compile the program, there's no bug. But when try to run it, it says "Start applet cannot be initialized".
    Why is that? I'm new to Java..Maybe because the Class you are trying to run is not an applet? Possibly, but the OP posted the Account class, whereas the Start class has not yet been revealed. That is one of the reasons I suggested an SSCCE.
    BTW I spotted a bug in your code above.You did. OTOH the OP has more imperative problems to fix, before they can 'understand the wisdom'(1) of your comment. ;)
    1) By which I mean, see it fail for the reasons you outlined.I usually expect to find the context of a problem to be outlined in the form of an explanation or question inside a thread. I guess I should pay more attention to the title.
    =) Mel

  • DFSR- Initial sync shows completed(eventID 4104), but still not 100%

    We are running a 2008R2 domain, but the DFSR members for this replication group are both 2003 R2 and 2008 R2.  I have 4 different servers that all had similar(not 100% exact) contents in the folder before DFS.  I setup DFS
    in a Multi-purpose and full-mesh model and chose one of them to be the primary server.  I noticed that the other members receive an eventID 4104(Initial Replication complete), but still do not have some files that exist on the primary server.  Actually,
    all 3 member servers have the 4104, but 2 do not have some old files and 2(including primary) do have the older files.  These are not special files at all and I do not think those files were coped recently.  Does anyone have any ideas of how a server
    can throw a 4104, but still not be 100% in sync with the primary? The local System account does have full permissions on the old files that are outstanding on some of the members.
    Dan Heim

    Hi Dan Heim,
    Please create a diagnostic report for DFS Replication, it will give you an overview about all files on all DFSR member servers. 
    In additional, check your staging size is set high enough on the replicated folder. If the staging folder not being big enough, DFS will be constantly trying to reduce the staging folder to be within the limits.
    You could refer to the articles below to know more about staging size:
    How to Determine the Minimum Staging Area DFSR Needs for a Replicated Folder
    http://blogs.technet.com/b/askds/archive/2011/07/13/how-to-determine-the-minimum-staging-area-dfsr-needs-for-a-replicated-folder.aspx
    Edit the Quota Size of the Staging Folder and Conflict and Deleted Folder
    http://technet.microsoft.com/en-us/library/cc754229.aspx
    There is a similar thread, please go through it to help troubleshoot this issue:
    Server 2008 R2 DFS replication issue
    http://social.technet.microsoft.com/Forums/en-US/cd976fc1-4134-4539-984e-83aa65c8dd83/server-2008-r2-dfs-replication-issue?forum=winserverfiles
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Applet is not appearing in Browser

    I created a standalone application that works (uses Swing). I wanted to place it on a webpage as an applet.
    this is wrking in applet viewer, whn i tryed in HTML using the applet tag calling the class file the applet is still not showing. in the browser ..
    i am getting this error
    arning: running 1.2 version of SwingUtilities
    java.lang.InstantiationException: JApplet1
         at com/ms/applet/BrowserAppletFrame.newInstance (BrowserAppletFrame.java)
         at com/ms/applet/AppletPanel.processSentEvent (AppletPanel.java)
         at com/ms/applet/AppletPanel.processSentEvent (AppletPanel.java)
         at com/ms/applet/AppletPanel.run (AppletPanel.java)
         at java/lang/Thread.run (Thread.java)
    can u plz! tell me the solution for this
    nandhu

    so did you have a standalone application or an applet? they are totally different... also, check and see if you have java plug in for your broswer...

  • Java Applets do not run when UAC is enabled on Windows 7

    HI,
    I'm deploying Java 6.0_26-b03+ on Windows 7 and experiencing following problem:
    Java applets do not run as standard domain users in Internet Explorer 9 on Windows 7 when UAC is enabled (i.E. http://www.java.com/de/download/installed.jsp). When logged on as Administrator or start IE9 as Administrator java applets do run.
    If I diable UAC an log on as normal user then applets do run. Applets then still run if UAC is re-enabled again. It seems that UAC needs to be disabled for the Java Plug-In to register something in user context (assumption). If this registration happended Java applets do run also for standard Windows 7 users if UAC is enabled.
    Since we're planning a corporate Windows 7 rollout (>800PCs) we cannot do this manually on every computer. Ther must be any solution for this problem.
    Does anybody have the same problem and has already found a solution?
    This is the content of the error log file generated when a standard domain user tries to run http://www.java.com/de/download/installed.jsp
    +#+
    +# A fatal error has been detected by the Java Runtime Environment:+
    +#+
    +# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x776677b2, pid=1320, tid=2380+
    +#+
    +# JRE version: 6.0_26-b03+
    +# Java VM: Java HotSpot(TM) Client VM (20.1-b02 mixed mode, sharing windows-x86 )+
    +# Problematic frame:+
    +# C [ntdll.dll+0x477b2]+
    +#+
    +# If you would like to submit a bug report, please visit:+
    +# http://java.sun.com/webapps/bugreport/crash.jsp+
    +# The crash happened outside the Java Virtual Machine in native code.+
    +# See problematic frame for where to report the bug.+
    +#+
    ---------------  T H R E A D  ---------------
    +Current thread (0x01da8c00):  JavaThread "main" [_thread_in_native, id=2380, stack(0x02420000,0x02620000)]+
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000024
    Registers:
    EAX=0x00000024, EBX=0x33827b58, ECX=0x7c38b4e8, EDX=0x7efeff3d
    ESP=0x02616090, EBP=0x026160a4, ESI=0x00000024, EDI=0x00000020
    EIP=0x776677b2, EFLAGS=0x00250212
    Top of Stack: (sp=0x02616090)
    +0x02616090: 02616236 00000000 7c34214f 01da6bc8+
    +0x026160a0: 026160e4 026160ec 7c34f639 00000020+
    +0x026160b0: 7c36b73f 00000000 6d1db83c 02616236+
    +0x026160c0: 00000000 33827b58 7c38b548 026160b8+
    +0x026160d0: 0000000d 026160bc 02615b4c 026165e0+
    +0x026160e0: 7c34240d 7c382198 ffffffff 02616454+
    +0x026160f0: 6d1d3b45 6d1db83c 00000000 02616210+
    +0x02616100: 6d1db84c 01da8c00 33827b58 00000000+
    Instructions: (pc=0x776677b2)
    +0x77667792: 33 c0 5e 5d c2 04 00 90 90 90 90 90 90 90 8b ff+
    +0x776677a2: 55 8b ec 83 ec 0c 56 57 8b 7d 08 8d 77 04 8b c6+
    +0x776677b2: f0 0f ba 30 00 0f 83 eb e2 00 00 64 a1 18 00 00+
    +0x776677c2: 00 8b 48 24 89 4f 0c c7 47 08 01 00 00 00 5f 33+
    Register to memory mapping:
    EAX=0x00000024 is an unknown value
    EBX=0x33827b58 is an oop
    +{method}+
    +- klass: {other class}+
    ECX=0x7c38b4e8 is an unknown value
    EDX=0x7efeff3d is an unknown value
    ESP=0x02616090 is pointing into the stack for thread: 0x01da8c00
    EBP=0x026160a4 is pointing into the stack for thread: 0x01da8c00
    ESI=0x00000024 is an unknown value
    EDI=0x00000020 is an unknown value
    Stack: [0x02420000,0x02620000],  sp=0x02616090,  free space=2008k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    +C  [ntdll.dll+0x477b2] RtlEnterCriticalSection+0x12+
    +C  [MSVCR71.dll+0xf639] _crtGetLocaleInfoW+0x2b1+
    +C  [deploy.dll+0x3b45] Java_com_sun_deploy_config_WinConfig_installShortcut+0x235+
    j  com.sun.deploy.config.Config.versionUpdateCheck()V392+
    j  com.sun.deploy.config.Config.initialize()Z256+
    j  com.sun.deploy.config.Config.<clinit>()V1933+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0x4d719]+
    +V  [jvm.dll+0x4de7f]+
    +V  [jvm.dll+0x4e050]+
    +V  [jvm.dll+0x4ac51]+
    j  sun.plugin2.main.server.JVMManager.processJREInfo()V32+
    j  sun.plugin2.main.server.JVMManager.<init>()V86+
    j  sun.plugin2.main.server.JVMManager.<clinit>()V72+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0x4d719]+
    +V  [jvm.dll+0x4de7f]+
    +V  [jvm.dll+0x4e050]+
    +V  [jvm.dll+0x4ac51]+
    j  sun.plugin2.main.server.IExplorerPlugin.<clinit>()V41+
    v  ~StubRoutines::call_stub
    +V  [jvm.dll+0xfae4b]+
    +V  [jvm.dll+0x18c531]+
    +V  [jvm.dll+0xfaecd]+
    +V  [jvm.dll+0x7deb7]+
    +V  [jvm.dll+0x7ed1e]+
    +V  [jvm.dll+0x7f009]+
    +V  [jvm.dll+0x7f126]+
    +V  [jvm.dll+0xb2ae9]+
    +V  [jvm.dll+0x94be8]+
    +C  [jp2iexp.dll+0x25b6] Java_sun_plugin2_main_server_WindowsHelper_uninstallHook+0xeaa+
    +C  [jp2iexp.dll+0x3b6b] Java_sun_plugin2_main_server_IExplorerPlugin_fillInExceptionInfo0+0x7ee+
    +C  [jp2iexp.dll+0xd2a4] DllGetClassObject+0x57c6+
    +C  [MSHTML.dll+0x156e41] RunHTMLApplication+0x1a9a+
    +C  [MSHTML.dll+0x156c95] RunHTMLApplication+0x18ee+
    +C  [MSHTML.dll+0x156cc3] RunHTMLApplication+0x191c+
    +C  [MSHTML.dll+0x156948] RunHTMLApplication+0x15a1+
    +C  [MSHTML.dll+0x15675f] RunHTMLApplication+0x13b8+
    +C  [MSHTML.dll+0x1563bf] RunHTMLApplication+0x1018+
    +C  [MSHTML.dll+0x15602e] RunHTMLApplication+0xc87+
    +C  [MSHTML.dll+0x99a35] MatchExactGetIDsOfNames+0x5eed7+
    +C  [MSHTML.dll+0x262624] CTravelLog_CreateInstance+0x1edcf+
    +C  [MSHTML.dll+0x29dc6f] DllGetClassObject+0x23eb1+
    +C  [MSHTML.dll+0x267e1c] CTravelLog_CreateInstance+0x245c7+
    +C  [MSHTML.dll+0x267d48] CTravelLog_CreateInstance+0x244f3+
    +C  [MSHTML.dll+0x267cad] CTravelLog_CreateInstance+0x24458+
    +C  [MSHTML.dll+0x267c0d] CTravelLog_CreateInstance+0x243b8+
    +C  [MSHTML.dll+0x24b83d] CTravelLog_CreateInstance+0x7fe8+
    +C  [MSHTML.dll+0x3ea169] DllGetClassObject+0x1703ab+
    +C  [MSHTML.dll+0x4095e0] DllGetClassObject+0x18f822+
    +C  [USER32.dll+0x1c4e7] gapfnScSendMessage+0x1cf+
    +C  [USER32.dll+0x1c5e7] gapfnScSendMessage+0x2cf+
    +C  [USER32.dll+0x1cc19] gapfnScSendMessage+0x901+
    +C  [USER32.dll+0x1cc70] DispatchMessageW+0xf+
    +C  [IEFRAME.dll+0xf1b83] Ordinal234+0x6520+
    +C  [IEFRAME.dll+0x111ac6] Ordinal224+0x17ff9+
    +C  [iertutil.dll+0x140150] Ordinal59+0x8b+
    +C  [IEFRAME.dll+0xffe03] Ordinal224+0x6336+
    +C  [kernel32.dll+0x53c45] BaseThreadInitThunk+0x12+
    +C  [ntdll.dll+0x637f5] RtlInitializeExceptionChain+0xef+
    +C  [ntdll.dll+0x637c8] RtlInitializeExceptionChain+0xc2+
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.sun.deploy.config.WinConfig.getBrowserPath()Ljava/lang/String;0+
    j  com.sun.deploy.config.Config.versionUpdateCheck()V392+
    j  com.sun.deploy.config.Config.initialize()Z256+
    j  com.sun.deploy.config.Config.<clinit>()V1933+
    v  ~StubRoutines::call_stub
    j  sun.plugin2.main.server.JVMManager.processJREInfo()V32+
    j  sun.plugin2.main.server.JVMManager.<init>()V86+
    j  sun.plugin2.main.server.JVMManager.<clinit>()V72+
    v  ~StubRoutines::call_stub
    j  sun.plugin2.main.server.IExplorerPlugin.<clinit>()V41+
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
    +0x03226400 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1796, stack(0x0a8c0000,0x0a9c0000)]+
    +0x031e2c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2144, stack(0x0a7b0000,0x0a8b0000)]+
    +0x031d3800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2036, stack(0x050d0000,0x051d0000)]+
    +0x031d2800 JavaThread "Attach Listener" daemon [_thread_blocked, id=1268, stack(0x0a5b0000,0x0a6b0000)]+
    +0x031d0800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1120, stack(0x0a4b0000,0x0a5b0000)]+
    +0x031ca000 JavaThread "Finalizer" daemon [_thread_blocked, id=1140, stack(0x09fc0000,0x0a0c0000)]+
    +0x031c8c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2500, stack(0x0a380000,0x0a480000)]+
    +=>0x01da8c00 JavaThread "main" [_thread_in_native, id=2380, stack(0x02420000,0x02620000)]+
    Other Threads:
    +0x0318c800 VMThread [stack: 0x0a1c0000,0x0a2c0000] [id=2672]+
    +0x031f2000 WatcherThread [stack: 0x0a9c0000,0x0aac0000] [id=2712]+
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 4928K, used 281K [0x317e0000, 0x31d30000, 0x32280000)
    eden space 4416K,   6% used [0x317e0000, 0x31826480, 0x31c30000)
    from space 512K,   0% used [0x31c30000, 0x31c30000, 0x31cb0000)
    to   space 512K,   0% used [0x31cb0000, 0x31cb0000, 0x31d30000)
    tenured generation   total 10944K, used 0K [0x32280000, 0x32d30000, 0x337e0000)
    the space 10944K,   0% used [0x32280000, 0x32280000, 0x32280200, 0x32d30000)
    compacting perm gen  total 12288K, used 371K [0x337e0000, 0x343e0000, 0x377e0000)
    the space 12288K,   3% used [0x337e0000, 0x3383cc08, 0x3383ce00, 0x343e0000)
    ro space 10240K,  51% used [0x377e0000, 0x37d0dff8, 0x37d0e000, 0x381e0000)
    rw space 12288K,  55% used [0x381e0000, 0x3887c208, 0x3887c400, 0x38de0000)
    Code Cache  [0x0c910000, 0x0c980000, 0x0e910000)
    total_blobs=147 nmethods=5 adapters=79 free_code_cache=33098880 largest_free_block=0
    Dynamic libraries:
    +0x00a40000 - 0x00af8000      C:\Program Files\Internet Explorer\iexplore.exe+
    +0x77620000 - 0x7775c000      C:\Windows\SYSTEM32\ntdll.dll+
    +0x75f50000 - 0x76024000      C:\Windows\system32\kernel32.dll+
    +0x75a70000 - 0x75aba000      C:\Windows\system32\KERNELBASE.dll+
    +0x777a0000 - 0x77840000      C:\Windows\system32\ADVAPI32.dll+
    +0x75d60000 - 0x75e0c000      C:\Windows\system32\msvcrt.dll+
    +0x75ac0000 - 0x75ad9000      C:\Windows\SYSTEM32\sechost.dll+
    +0x764a0000 - 0x76541000      C:\Windows\system32\RPCRT4.dll+
    +0x77250000 - 0x77319000      C:\Windows\system32\USER32.dll+
    +0x76450000 - 0x7649e000      C:\Windows\system32\GDI32.dll+
    +0x77840000 - 0x7784a000      C:\Windows\system32\LPK.dll+
    +0x76550000 - 0x765ed000      C:\Windows\system32\USP10.dll+
    +0x75ee0000 - 0x75f37000      C:\Windows\system32\SHLWAPI.dll+
    +0x765f0000 - 0x7723a000      C:\Windows\system32\SHELL32.dll+
    +0x774c0000 - 0x7761c000      C:\Windows\system32\ole32.dll+
    +0x75c20000 - 0x75d30000      C:\Windows\system32\urlmon.dll+
    +0x76080000 - 0x7610f000      C:\Windows\system32\OLEAUT32.dll+
    +0x76110000 - 0x762c6000      C:\Windows\system32\iertutil.dll+
    +0x762d0000 - 0x763ea000      C:\Windows\system32\WININET.dll+
    +0x75f40000 - 0x75f43000      C:\Windows\system32\Normaliz.dll+
    +0x75d40000 - 0x75d5f000      C:\Windows\system32\IMM32.DLL+
    +0x75e10000 - 0x75edc000      C:\Windows\system32\MSCTF.dll+
    +0x66850000 - 0x67195000      C:\Windows\system32\IEFRAME.dll+
    +0x77240000 - 0x77245000      C:\Windows\system32\PSAPI.DLL+
    +0x73850000 - 0x7388c000      C:\Windows\system32\OLEACC.dll+
    +0x743d0000 - 0x7456e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll+
    +0x75b70000 - 0x75beb000      C:\Windows\system32\comdlg32.dll+
    +0x73600000 - 0x73631000      C:\Program Files\Internet Explorer\IEShims.dll+
    +0x75740000 - 0x7574c000      C:\Windows\system32\CRYPTBASE.dll+
    +0x75590000 - 0x75598000      C:\Windows\system32\Secur32.dll+
    +0x756d0000 - 0x756eb000      C:\Windows\system32\SSPICLI.DLL+
    +0x757c0000 - 0x757cb000      C:\Windows\system32\profapi.dll+
    +0x77760000 - 0x77795000      C:\Windows\system32\WS2_32.dll+
    +0x75d30000 - 0x75d36000      C:\Windows\system32\NSI.dll+
    +0x750a0000 - 0x750e4000      C:\Windows\system32\dnsapi.DLL+
    +0x72fa0000 - 0x72fbc000      C:\Windows\system32\iphlpapi.DLL+
    +0x72f90000 - 0x72f97000      C:\Windows\system32\WINNSI.DLL+
    +0x757b0000 - 0x757be000      C:\Windows\system32\RpcRtRemote.dll+
    +0x63ef0000 - 0x64aa8000      C:\Windows\system32\MSHTML.dll+
    +0x74cb0000 - 0x74cb9000      C:\Windows\system32\VERSION.dll+
    +0x6f5f0000 - 0x6f6aa000      C:\Windows\system32\d2d1.dll+
    +0x6c8a0000 - 0x6c9aa000      C:\Windows\system32\DWrite.dll+
    +0x6d3c0000 - 0x6d443000      C:\Windows\system32\dxgi.dll+
    +0x739d0000 - 0x739e3000      C:\Windows\system32\dwmapi.dll+
    +0x75300000 - 0x75316000      C:\Windows\system32\CRYPTSP.dll+
    +0x758d0000 - 0x758fd000      C:\Windows\system32\WINTRUST.dll+
    +0x75950000 - 0x75a6d000      C:\Windows\system32\CRYPT32.dll+
    +0x75830000 - 0x7583c000      C:\Windows\system32\MSASN1.dll+
    +0x74b70000 - 0x74b91000      C:\Windows\system32\ntmarta.dll+
    +0x76030000 - 0x76075000      C:\Windows\system32\WLDAP32.dll+
    +0x75000000 - 0x7503b000      C:\Windows\system32\rsaenh.dll+
    +0x75ae0000 - 0x75b63000      C:\Windows\system32\CLBCatQ.DLL+
    +0x69240000 - 0x69272000      C:\Program Files\Internet Explorer\ieproxy.dll+
    +0x756f0000 - 0x7573c000      C:\Windows\system32\apphelp.dll+
    +0x74130000 - 0x74263000      C:\Windows\System32\msxml3.dll+
    +0x75750000 - 0x757af000      C:\Windows\system32\SXS.DLL+
    +0x73d90000 - 0x73d9b000      C:\Windows\system32\msimtf.dll+
    +0x6d390000 - 0x6d3bb000      C:\Windows\system32\msls31.dll+
    +0x77320000 - 0x774bd000      C:\Windows\system32\setupapi.dll+
    +0x75920000 - 0x75947000      C:\Windows\system32\CFGMGR32.dll+
    +0x75900000 - 0x75912000      C:\Windows\system32\DEVOBJ.dll+
    +0x73570000 - 0x7359c000      C:\Windows\system32\d3d10_1.dll+
    +0x734b0000 - 0x734ea000      C:\Windows\system32\d3d10_1core.dll+
    +0x6c770000 - 0x6c89c000      C:\Windows\system32\D3D10Warp.dll+
    +0x69760000 - 0x6978e000      C:\Windows\system32\MLANG.dll+
    +0x74970000 - 0x74a65000      C:\Windows\system32\PROPSYS.dll+
    +0x6ab00000 - 0x6ac02000      C:\Windows\system32\d3d10.dll+
    +0x73520000 - 0x73553000      C:\Windows\system32\d3d10core.dll+
    +0x73d40000 - 0x73d80000      C:\Windows\system32\UxTheme.dll+
    +0x73180000 - 0x731d2000      C:\Windows\system32\RASAPI32.dll+
    +0x73160000 - 0x73175000      C:\Windows\system32\rasman.dll+
    +0x73150000 - 0x7315d000      C:\Windows\system32\rtutils.dll+
    +0x6f6b0000 - 0x6f6b6000      C:\Windows\system32\sensapi.dll+
    +0x75190000 - 0x751cc000      C:\Windows\system32\mswsock.dll+
    +0x74d40000 - 0x74d45000      C:\Windows\System32\wshtcpip.dll+
    +0x747f0000 - 0x74815000      C:\Windows\system32\peerdist.dll+
    +0x74e00000 - 0x74e17000      C:\Windows\system32\USERENV.dll+
    +0x753f0000 - 0x7540b000      C:\Windows\system32\AUTHZ.dll+
    +0x747e0000 - 0x747f0000      C:\Windows\system32\NLAapi.dll+
    +0x72330000 - 0x72336000      C:\Windows\system32\rasadhlp.dll+
    +0x75180000 - 0x75186000      C:\Windows\System32\wship6.dll+
    +0x72b90000 - 0x72bc8000      C:\Windows\System32\fwpuclnt.dll+
    +0x695a0000 - 0x6975b000      C:\Windows\System32\jscript9.dll+
    +0x72de0000 - 0x72e1a000      C:\Windows\System32\Dxtrans.dll+
    +0x74790000 - 0x747a4000      C:\Windows\System32\ATL.DLL+
    +0x74330000 - 0x7433a000      C:\Windows\system32\ddrawex.dll+
    +0x694b0000 - 0x69597000      C:\Windows\system32\DDRAW.dll+
    +0x742d0000 - 0x742d6000      C:\Windows\system32\DCIMAN32.dll+
    +0x6c710000 - 0x6c769000      C:\Windows\System32\Dxtmsft.dll+
    +0x73a00000 - 0x73afb000      C:\Windows\system32\windowscodecs.dll+
    +0x6cf70000 - 0x6cfa2000      C:\Windows\system32\WINMM.dll+
    +0x739a0000 - 0x739cf000      C:\Windows\system32\XmlLite.dll+
    +0x74310000 - 0x74317000      C:\Windows\system32\msiltcfg.dll+
    +0x6c410000 - 0x6c650000      C:\Windows\system32\msi.dll+
    +0x6ac70000 - 0x6acb7000      C:\Windows\system32\Adobe\Director\SwDir.dll+
    +0x6c6d0000 - 0x6c703000      C:\Windows\system32\windowscodecsext.dll+
    +0x69790000 - 0x69809000      C:\Windows\system32\mscms.dll+
    +0x6ac30000 - 0x6ac68000      C:\Windows\system32\icm32.dll+
    +0x69410000 - 0x694ad000      C:\Windows\system32\Adobe\Shockwave 11\Control.dll+
    +0x6e810000 - 0x6e861000      C:\Windows\system32\winspool.drv+
    +0x69390000 - 0x69402000      C:\Windows\system32\DSOUND.dll+
    +0x74ac0000 - 0x74ae5000      C:\Windows\system32\POWRPROF.dll+
    +0x74a70000 - 0x74aa9000      C:\Windows\System32\MMDevApi.dll+
    +0x73960000 - 0x73996000      C:\Windows\system32\AUDIOSES.DLL+
    +0x736e0000 - 0x736ec000      C:\Windows\system32\mssprxy.dll+
    +0x69320000 - 0x6938a000      C:\Windows\system32\vbscript.dll+
    +0x653b0000 - 0x659de000      C:\Windows\system32\Macromed\Flash\Flash10t.ocx+
    +0x74f70000 - 0x74f78000      C:\Windows\system32\credssp.dll+
    +0x74f20000 - 0x74f5a000      C:\Windows\system32\schannel.DLL+
    +0x67430000 - 0x674f8000      C:\Windows\system32\OPENGL32.DLL+
    +0x68ce0000 - 0x68d02000      C:\Windows\system32\GLU32.dll+
    +0x10000000 - 0x10dc0000      C:\Windows\system32\ig4icd32.dll+
    +0x68c70000 - 0x68cd4000      C:\Windows\system32\D3DIM.DLL+
    +0x67360000 - 0x6742c000      C:\Windows\system32\D3DIM700.DLL+
    +0x01d40000 - 0x01d5f000      C:\Program Files\Java\jre6\bin\jp2iexp.dll+
    +0x7c340000 - 0x7c396000      C:\Program Files\Java\jre6\bin\MSVCR71.dll+
    +0x72d30000 - 0x72d37000      C:\Windows\system32\wsock32.dll+
    +0x71b10000 - 0x71b20000      C:\Windows\system32\napinsp.dll+
    +0x71af0000 - 0x71b02000      C:\Windows\system32\pnrpnsp.dll+
    +0x720d0000 - 0x720d8000      C:\Windows\System32\winrnr.dll+
    +0x71ae0000 - 0x71aed000      C:\Windows\system32\wshbth.dll+
    +0x6f8f0000 - 0x6f974000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\comctl32.dll+
    +0x6d7f0000 - 0x6da9f000      C:\PROGRA~1\Java\jre6\bin\client\jvm.dll+
    +0x6d7a0000 - 0x6d7ac000      C:\PROGRA~1\Java\jre6\bin\verify.dll+
    +0x6d320000 - 0x6d33f000      C:\PROGRA~1\Java\jre6\bin\java.dll+
    +0x6d7e0000 - 0x6d7ef000      C:\PROGRA~1\Java\jre6\bin\zip.dll+
    +0x01dc0000 - 0x01dc6000      C:\Program Files\Java\jre6\bin\jp2native.dll+
    +0x6d1d0000 - 0x6d1e3000      C:\Program Files\Java\jre6\bin\deploy.dll+
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\jre6\lib\deploy.jar;C:\PROGRA~1\Java\jre6\lib\javaws.jar;C:\PROGRA~1\Java\jre6\lib\plugin.jar -Xmx32m -Djava.awt.headless=true -Dkernel.background.download=false -Dkernel.download.dialog=false -XX:MaxDirectMemorySize=64m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\Program Files\Internet Explorer;;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32\Empirum
    USERNAME=%username%
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 42 Stepping 7, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows 7 Build 7601 Service Pack 1
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 3063864k(2285416k free), swap 6125972k(5328168k free)
    vm_info: Java HotSpot(TM) Client VM (20.1-b02) for windows-x86 JRE (1.6.0_26-b03), built on May  4 2011 00:50:59 by "java_re" with MS VC+ 7.1 (VS2003)+
    time: Thu Jun 30 17:20:35 2011
    elapsed time: 0 seconds

    user11262844 wrote:
    Since we're planning a corporate Windows 7 rollout (>800PCs) we cannot do this manually on every computer. Ther must be any solution for this problem.If you're doing a corporate rollout of that size then surely you're just making an image of the desired configuration and just duplicating it onto the 800 PCs? In which case you would just configure IE appropriately as part of the image.
    Or alternatively you are manually configuring each of the 800 PCs, in which case this would be just one more thing in the checklist.

  • Java Applet HelloWorld "Getting Started With Applets" example not working

    Hi there,
    It's been ages since I ran my Linux CentOS boot of Linux but I am going through the official oracle java applet tutorials, just every time I try and run the "Hello World" applet in Firefox 17.0.3 and I am running the Iced Tea thing for java applets.
    Every time I try and run the example from the following code:
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    import javax.swing.JLabel;
    public class HelloWorld extends JApplet
      // called when the user enters the html page:
      public void init() // keep apps within the init() function very small as per the http://docs.oracle.com/javase/tutorial/deployment/applet/appletMethods.html
        try{
          SwingUtilities.invokeAndWait(new Runnable()
            public void run()
           JLabel myLabel = new JLabel("Hello World");
           add(myLabel);
            } // end running the application
          }); //end of swing invokeand wait
        } catch (Exception error){ // end user running the app in page
           // System.err.println("GUI didn't work on initial run");
    }It keeps bringing up the error "Start: Applet not initialized" I did google that basic error and from what I found I should consult the JavaConsole, I know the console was removed from the Firefox menu quite a while ago. So went to find a way of loading it using the IcedTea one but it keeps bringing up a load of errors in even trying to run that.
    Is there anyway of sorting this out? I mean I have even tried installing the one on the oracle website, the plain JDK but nothing seems to work.
    Is there anyone that can help me get applets working? I was even going to go as far as to reinstall my distro but I want to avoid that as much as possible.
    Thanks and I look forward to any replies,
    Jeremy.

    in the Getting Started with Java DB tutorial they
    tell u how to set ur "DERBY_HOME" (what is that?).
    once i press enter after typing this command:
    set DERBY_HOME=D:\Java\Java
    Phonebook\javadb in my command prompt do i get
    any message or does it just go to the next line?type env or set or whatever in the command line to see what your environment variables are set to
    they also tell u how to set ur "JAVA_HOME" (what is
    that?). The Java installation you want to use
    in their example they give u this: set
    JAVA_HOME=C:\Program Files\Java\j2se1.4.2_05but in my java folder i have jdk1.6.0 and jre1.6.0
    but no j2se1.4.2_05, so which 1 must i choose?It's up to you. I'd go with 1.6
    also once ive done this: set
    DERBY_HOME=D:\Java\Java Phonebook\javadb this
    set JAVA_HOME=D:\Program
    Files\Java\jre1.6.0 and this set
    PATH=%DERBY_HOME%\bin;%PATH% and then type
    sysinfo to verify that the variables were set
    correctly i get these errors: 'D:\Java\Java' is
    not recognized as an internal or external command,
    operable program or batch file and '""'
    is not recognized as an internal or external command,
    operable program or batch file any help would
    really be appreciated because this is really killing
    me!you need to set your path variable - so something like:
    set PATH=C:\Program Files\Java\j2se1.4.2_05\bin

  • The output file  for your concurrent request is not initialized

    Application: Application Object Library(FND)
    Component Type: SERVICE_INSTANCE
    Component Name: Standard Manager(STANDARD)
    /*The output file for your concurrent request is not initialized.
    Cause: Your concurrent program execution was not preceded by calls to standard
    Application Object Library routines to initialize concurrent processing. FDPFOP
    received a return code of failure.
    Action: Change your concurrent program to initialize files by calling standard
    Application Object Library routines. */
    I got the mail with the above message from System ( Oracle Applicaitons Release 12.1.1)
    I have checked the following metalink document
    The Output File For Your Concurrent Request is Not Initialized: FDPFOP received a return code of failure [ID 296830.1]
    I can not undestand, why the alert sends mail?
    Could you please let me know..what happened to standard manager? how to resolve the above issue? why the above alert happened?
    The above meatlink note did not help much....

    Hi;
    >
    /*The output file for your concurrent request is not initialized.
    Cause: Your concurrent program execution was not preceded by calls to standard
    Application Object Library routines to initialize concurrent processing. FDPFOP
    received a return code of failure.
    Action: Change your concurrent program to initialize files by calling standard
    Application Object Library routines. */
    The Output File For Your Concurrent Request is Not Initialized: FDPFOP received a return code of failure [ID 296830.1]
    I can not undestand, why the alert sends mail? Could you please let me know..what happened to standard manager? how to resolve the above issue? why the above alert happened?I checked related note and it mention its internal bug which mean we cant say too many thing about issue.
    The above meatlink note did not help much....It helped or not? Issue still appear or not?
    Please run adadmin utulity >> from Maintain Applications Files>> Relink Applications programs
    Be sure it wont through any error message than retest issue
    Regard
    Helios

  • Nikon D810 and DNG files still not working

    I have the D810... I just downloaded the DNG converter and still not showing in LR. Help!!!!!

    Shoot a test shot with each of the various raw modes the camera has, keep careful notes about which ones are which, and see which resolutions are compatible with the DNG Converter and LR and avoid the ones that don't work, for now.
    If you really only want 9MP images then spending $3500 on a D810 is foolish, right?  Obviously you want the freedom to be able to do that at some point, to save memory card and hard-drive space for less important images, but since this is a beta release it also makes sense from Adobe's point-of-view to not try to get every single mode supported before getting the native 36MP mode, that people actually get the camera for, supported, initially rather than delay the release a few more days or weeks to have all the lesser modes supported.
    If you mean what you can do with the existing images, I'd use Nikon software to convert them to TIFs or JPGs after setting the WB properly, and edit those TIFs in LR if they are important to you.

Maybe you are looking for

  • Adding new fields to existing cube

    Hi all, We have a cube with data, now we added 2 new fields to the datasource. And want to add two more fields in the Cube to correspond to the new fields. What would be the impact on the data that is already there in the cube? Can I go ahead and add

  • Split Tunneling Two VPN Clients On One Laptop?

    I recently tried to check the properties of a folder on the network to see what the total file size of its contents was (on a Server 2008 R2 server, logged on using my domain admin account).The total size of the contents reported was ony 6 MB. This w

  • Problem with JPanel in a JScrollPane

    Hi all, I am devloping an application where in i insert the JPanel's object in the JScrollPane object. Intitially the size of the JPanel's object is more than the size of the JScrollPane object.At this point fo time i can drag the nob of the scrollpa

  • Empty folders in my trash that I can't get rid of...

    Hi, I know that there are and have been many posts in this discussion forum about undeletable items in Trash, but rest assured that I have tried everything I could come up with in the last few days and that I have no choice but to post this. First, t

  • Want to modify the Global Database Name in Oracle 10g R2

    Hi All, I have a global database name like GS77.UK.ORA.COM , I want it to be just GS77.What are the possible workarounds for modifying this. Thanks & Regards, Gaurav S.