Applet loading screen

Hi guys,
I have searched the forums but can't find a suitable solution to my problem.
I am using the following Applet to hide the standard java loading screen. My main applet consists of 3 jar files which are all about 300k. I would like to present a progress bar to the user while they download but can't find anyway to get this information. For example, number of bytes to download and the amount downloaded.
public class AppletLoader extends Applet implements Runnable, AppletStub {
    //the loading thread
    private Thread _thread;
    //the applet to load name
    private String _appletName;
    //the applet to load
    private Applet _applet;
    //the loading screen
    private LoadingScreen _screen;
    //the loaded flag
    private boolean _loaded;
    public void init() {
        initApplet();
        //install the look and feel
        try {
            ChessLookAndFeel.install();
        } catch (Exception exp) {
            //print the error
            ExceptionUtil.printException(exp);
        //create the screen
        _screen = new LoadingScreen(this);
        //get the name of the applet to load
        _appletName = getParameter("applet");
        add(_screen);
        //if there isn't one, print a message
        if (_appletName == null) {
            _screen.setErrorMessage("No applet to load.");
        } else {
            _screen.setLoadingMessage("Please wait - loading Titan Chess");
    public void initApplet() {
        setSize(new Dimension(906, 500));
    public void run() {
        //if there's no applet to load, don't bother loading it!
        if (_appletName == null) return;
        try {
            //get the class for the applet we want
            Class applet_class = Class.forName(_appletName);
            //create an instance of the applet
            _applet = (Applet)applet_class.newInstance();
            //set the applet's stub - this will allow the real applet to use
            //this applet's document base, code base, and applet context.
            _applet.setStub(this);
            //remove the old message and put the applet up
            remove(_screen);
            setLayout(new GridLayout(1, 0));
            //add the real applet as a child component
            add(_applet);
            //crank up the real applet
            _applet.init();
            _applet.start();
        } catch (Exception exp) {
            //print the error
            ExceptionUtil.printException(exp);
            //if we got an error anywhere, print it
            _screen.setErrorMessage("Error loading Titan Chess");
        _loaded = true;
        //make sure the screen layout is redrawn
        validate();
    public void start() {
        _thread = new Thread(this);
        _thread.start();
    //the following methods delegate applet methods to the loaded applet.
    public void stop() {
        if (_loaded) {
            _applet.stop();
        } else {
            _thread.stop();
            _thread = null;
    public void destroy() {
        if (_loaded) {
            _applet.destroy();
    public void appletResize(int width, int height) {       
        //resize the applet
        resize(width, height);
}I have seen examples where they load each class but my applet is packaged in jar files (which download much quicker and are signable).
Any ideas?

to do that, make the VERY first thing you do in init() be to create a BufferedImage and draw your message on it. Then make your paint message look like this:public void paint(Graphics g) {
     g.drawImage(yourImageName, 0, 0, null);
//and
public void update(Graphics g) {
     paint(g);
}Then call update(getGraphics() and that will put it on the screen, and it will redraw itself even if someone messes with the screen or hides it then comes back. You'll also probably want to have a flag "ifLoading" or something to check to see if paint() should actually do anything, because if you're not loading that stuff, you probably have a game loop running during which you're probably trying to keep a constant framerate. If you're doing that, you don't want paint() to do anything because it'll get in your way.

Similar Messages

  • Custom Loading Screen in Applet

    Hello,
    in Flex/Flash the swf File contains 2 parts. First the loading Screen and second the programm.
    So it loaded the loading Screen and than contains with the loading of the programm.
    You can override the common Loading Screen and add some company specific varaint. The is very usefull, cause many company have a own CI.
    So it is possible to change the Loading Screen in Java FX Applets?
    Thanks for you Answer.
    Regards,
    Rookee

    See [Joshua Marinacci's Blog: A Better Applet Experience, Part 1: a custom loading screen|http://weblogs.java.net/blog/joshy/archive/2008/08/a_better_applet.html] article.
    But I fear we are currently limited to an image, fixed or animated (Gif). We cannot do something fancy like a lightweight FX program showing a more or less complex animation while the heavyweight applet loads in background (and provides progress information...).

  • Loading screen above Applet from an iframe

    Hi,
    i am running this code for loading screen which is transparent
    http://www.andrewpeace.com/loading-screen.html
    now i am placing an iframe
    <p><iframe src="http://statlab0.fon.bg.ac.yu/eng/eng/apletieng/buffon/Coin.html" id="appletFrame"></iframe></p>
    so that i may also come behind the loading screen. But the applet is coming in front of the loading screen and not goin behind the screen. can anyone suggest a way to let the applet also to be behind the loading screen.
    the above html had the javascript code for loading screen.
    if anyone can help out today :(
    i am in urgent need.

    No, but maybe a trace could shed some light on the problem:
    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_03.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();}

  • Java applet (pre)loading screen

    Hello everyone,
    As a java programmer I was wondering if it is possible to customize the java loading screen (Which runs before opening a java applet). It doesn't look really nice when a customised applet is running, but the viewers first get the orange java loading object.
    Does anyone know if this is possible?
    Thanks in advance.

    I never tried, but there seems to be an applet image parameter like in
    this example I found on the web:
    <APPLET code=Wave.class width=200 height=80>
         <PARAM name=image value="email.gif">
         <PARAM name=mailto value="[email protected]">
    </APPLET>I also read that for best effects, the image size should match the applet size.

  • Multiple instances of the same applet loaded causes problem

    I have a java applet that has several classes in the project. The applet has a JTable a JButton and a JLabel control. The applet is displayed within an HTML page. The problem is that if a user opens the same html page more than once with the applet in it, only the last applet loaded receives the screen updates.
    For example in one senario. I have an error message that displays in the Label control once they click on the button.
    The user opens the html page and the applet is loaded (window 1). The user then opens the same html page again (window 2) with window 1 still open. If the user clicks on the Button in window 1, the error message is displayed in the window 2 applet.
    Originally I had some static variables. Thinking it was being used globally by the JVM so I removed all of them and it still happens. I have tried using both the Applet and Object tag. But it still happens.
    Has anyone experienced this before? Any suggestions on how to make the applet update the instance that recieved the events and not just the last one that was loaded?

    You need to look at applet classloader issues. If applets have the same archive list and come from the same codebase, they have the same classloader. A class is namespaced by it's class + classloader. Any statics in a class with a classloader will be shared. If you instead make it such that your applets have unique classloaders (which you can't change for unsigned applets by yourself) by changing the codebase, that would be one solution.
    For other solutions, I recommend searching the forum. This issue comes up a lot.

  • Applet Login Screen

    Hi everyone.
    I decided to make an applet which has a login screen like "User Name" & "Password" and below there are 2 buttons "cancel" and "login"... Anyway the real problem is i have no idea about the process after log in the program...
    How can i make a load screen and start the interface at the same window...
    Just like :
    1-) i enter the name and pass then click the login button
    2-) A load screen appears
    3-) After load screen my interface shown in the screen
    Has anyone have a tutorial or idea about this problem?
    i'll be really appreciate if you'll help me!
    Thanks.

    I try to make a program for my programming lessonn and the program has an user interface. But first the user log in to the program... So firstly the log in panel must appear. Then when you logged in correctly , the applet must load the interface of the program... (there may be a loading screen shows up )
    just like an email provider there's a login panel and the user interface but all needs to be applet.

  • Removing gray crappy ugly Applet loader background

    excuse my language but I've spent the last two days tring to figure out how to remove the gray screen when the applet loads in a browser...
    I've searched the forums, found other ppl with same problem but no real solutions...
    from what I found:
    1. using javascript to hide the applet while its loading
    works for IE but not for Netscape 6( http://www.codeproject.com/java/javaappletwaitmsg.asp )
    2. using an applet to load the real applet
    seems ok, but you still see the gray screen when the first applet loads... basically this just shortens the time you get to see the gray screen, not a proper solution( http://www.acm.vt.edu/~jmaxwell/appletloader/appletloader.html )
    So should I assume there is no way to tell the java plug-in not to make the screen gray while its loading the applet??????
    WHY? WHY? WHY?
    is there really no way of changing this horrible GRAY screen???
    please if anybody found out how to solve this, post it here!

    2 main reasons why the gray panel stays for a long time..
    1, the JVM is loaded, the applet is now visible but due to lots of late binding and other startup stuff, the Applet itself takes a long time to load.
    Solution, in a previous page, load a dummy applet that does basically nothing and make it 1x1 pixels in width and height. This cuts down on the JVM start up.
    2, Your Applet causes classes to load from the Web Server (of course).
    Solution in 2 parts:
    Part 1, make sure that all your applet classes are jar'ed with compression on and that your applet code has debug code off and no optimisation used when compiling. This ensures the smallest code size other than that produced an obfuscator.
    Part 2, Your applet should be doing 2 things. Firstly, it should be attempting to turn its background to the chosen colour as soon as possible. It should be doing nothing else at all, not even creating other classes, loading classes nothing at all. Secondly, when the Applets background colour is set, then you can start loading classes that do the work your Applet is supposed to do. When that is all over, you can that start to modify the Applet's panel

  • Grey loading screen

    Ive programmed some applets and when I test it in the applet viewer or using the microsft virtual machine my preloading screen displays, but when i run it through using the sun virtual maching i get the grey loading screen with the bar..............does anyone know if there is a way of disabling this so that my loading screen displays instead of this

    This will load the Poker class, and invoke the default Constructor.
    Place this in your class that extends Applet, and ensure there are no references between the Applet, and the Poker game related classes.
    ClassLoader cl = ClassLoader.getSystemClassLoader();
    Class c = cl.loadClass("Poker",true);
    Constructor [] cons = c.getConstructors(); //I could probably use c.getConstructor(null) here instead, but I wasn't sure, so I didn't bother.
    cons[0].newInstance(null);//I assumed there is only 1 constructor, and it takes no parametersnote.
    I don't know if Applets are allowed to load Classes through reflection/ClassLoader, so you'll have to test it.

  • Applet load problem with Linux browsers

    My application uses jsp and applets and I am having a problem loading the applets
    under all Linux browsers. If you switch between the applets rapidly then without fail you will get yourself into a state where the applets do not load (you see the applet
    splash screen and that's it). When you are in this state you cannot load any future applets from this browser. You have to kill the browser and start it again to load the applet. I have tested this with Galeon 1.2.6, Mozilla 1.0.1, and Netscape 7.0 with versions 1.4.1_01, 1.4.0_01, and 1.3.1_05. Can anyone shed some light on this problem? A thread dump shows that there are many threads waiting on monitors that I am afraid will never get notified since I have clicked onto another applet. Thanks for any insight...
    Full thread dump Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode):
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x84acdb0 nid=0x551a waiting for monitor entry [badff000..badff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x44a16f30> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:375)
         - locked <0x44a16f30> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:73)
         at com.storigen.ui.BaseApplet.initContentPane(BaseApplet.java:253)
         at com.storigen.ui.BaseApplet.init(BaseApplet.java:127)
         at sun.applet.AppletPanel.run(AppletPanel.java:347)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-77" prio=1 tid=0x0x83db4b0 nid=0x5518 in Object.wait() [bb3ff000..bb3ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449de278> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449de278> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.joinAppletThread(AppletPanel.java:155)
         at sun.applet.AppletPanel.sendEvent(AppletPanel.java:251)
         at sun.plugin.AppletViewer.onPrivateClose(AppletViewer.java:761)
         at sun.plugin.AppletViewer$1.run(AppletViewer.java:723)
         at java.lang.Thread.run(Thread.java:536)
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x8110760 nid=0x5514 waiting for monitor entry [bb1ff000..bb1ff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449f5ce8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:375)
         - locked <0x449f5ce8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:73)
         at com.storigen.ui.BaseApplet.initContentPane(BaseApplet.java:253)
         at com.storigen.ui.BaseApplet.init(BaseApplet.java:127)
         at sun.applet.AppletPanel.run(AppletPanel.java:347)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-74" prio=1 tid=0x0x84986b8 nid=0x5509 in Object.wait() [bb7ff000..bb7ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449d7be0> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449d7be0> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.joinAppletThread(AppletPanel.java:155)
         at sun.applet.AppletPanel.sendEvent(AppletPanel.java:251)
         at sun.plugin.AppletViewer.onPrivateClose(AppletViewer.java:761)
         at sun.plugin.AppletViewer$1.run(AppletViewer.java:723)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-73" prio=1 tid=0x0x84d5368 nid=0x54fa waiting for monitor entry [bb9fe000..bb9ff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449d77d8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:375)
         - locked <0x449d77d8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(PluginURLJarFileCallBack.java:52)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:152)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:42)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:53)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:85)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:103)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:78)
         at sun.misc.URLClassPath$JarLoader.getJarFile(URLClassPath.java:580)
         at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:541)
         at sun.misc.URLClassPath$3.run(URLClassPath.java:319)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:308)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:285)
         - locked <0x449d7960> (a sun.misc.URLClassPath)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:155)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:134)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:168)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
         - locked <0x449d79b0> (a sun.plugin.security.PluginClassLoader)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:114)
         - locked <0x449d79b0> (a sun.plugin.security.PluginClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:501)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:566)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1775)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:495)
         at sun.applet.AppletPanel.run(AppletPanel.java:292)
         at java.lang.Thread.run(Thread.java:536)
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x84d5570 nid=0x54f8 in Object.wait() [bb5ff000..bb5ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449d7720> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449d7720> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.run(AppletPanel.java:327)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-71" prio=1 tid=0x0x810a320 nid=0x54f5 in Object.wait() [bbdff000..bbdff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449ccac8> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449ccac8> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.joinAppletThread(AppletPanel.java:155)
         at sun.applet.AppletPanel.sendEvent(AppletPanel.java:251)
         at sun.plugin.AppletViewer.onPrivateClose(AppletViewer.java:761)
         at sun.plugin.AppletViewer$1.run(AppletViewer.java:723)
         at java.lang.Thread.run(Thread.java:536)
    "AWT-EventQueue-13" prio=1 tid=0x0x4cbe3560 nid=0x54f4 in Object.wait() [bcbff000..bcbff880]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:426)
         at java.awt.EventQueue.getNextEvent(EventQueue.java:333)
         - locked <0x449cefd0> (a java.awt.EventQueue)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "TimerQueue" daemon prio=1 tid=0x0x810ad00 nid=0x54f3 in Object.wait() [bbbff000..bbbff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449cc950> (a javax.swing.TimerQueue)
         at javax.swing.TimerQueue.run(TimerQueue.java:231)
         - locked <0x449cc950> (a javax.swing.TimerQueue)
         at java.lang.Thread.run(Thread.java:536)
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x841d4e8 nid=0x54f0 waiting for monitor entry [bc5ff000..bc5ff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449d7ce0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:375)
         - locked <0x449d7ce0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:73)
         at com.storigen.ui.BaseApplet.initContentPane(BaseApplet.java:253)
         at com.storigen.ui.BaseApplet.init(BaseApplet.java:127)
         at sun.applet.AppletPanel.run(AppletPanel.java:347)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-68" prio=1 tid=0x0x8113280 nid=0x54ed in Object.wait() [bd1ff000..bd1ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449b8bd0> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449b8bd0> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.joinAppletThread(AppletPanel.java:155)
         at sun.applet.AppletPanel.sendEvent(AppletPanel.java:251)
         at sun.plugin.AppletViewer.onPrivateClose(AppletViewer.java:761)
         at sun.plugin.AppletViewer$1.run(AppletViewer.java:723)
         at java.lang.Thread.run(Thread.java:536)
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x841b0c0 nid=0x54ea waiting for monitor entry [bcdff000..bcdff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449ccd38> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:528)
         - locked <0x449ccd38> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:66)
         at com.storigen.util.ASPipeLine.load(ASPipeLine.java:35)
         at com.storigen.ui.PipeLineTableModel.refresh(PipeLineTableModel.java:85)
         - locked <0x449cce30> (a com.storigen.ui.PipeLineTableModel)
         at com.storigen.ui.PipeLineTableModel.<init>(PipeLineTableModel.java:72)
         at com.storigen.ui.PipeLineTableModel.<init>(PipeLineTableModel.java:43)
         at com.storigen.su.ui.SoftwareVersionsPanel.layoutPanel(SoftwareVersionsPanel.java:84)
         at com.storigen.su.ui.SoftwareVersionsPanel.<init>(SoftwareVersionsPanel.java:65)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:306)
         at java.lang.Class.newInstance(Class.java:259)
         at com.storigen.ui.BaseApplet.initContentPane(BaseApplet.java:248)
         at com.storigen.ui.BaseApplet.init(BaseApplet.java:127)
         at sun.applet.AppletPanel.run(AppletPanel.java:347)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-65" prio=1 tid=0x0x80bdc10 nid=0x54e8 in Object.wait() [bd3ff000..bd3ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449adc28> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1008)
         - locked <0x449adc28> (a java.lang.Thread)
         at java.lang.Thread.join(Thread.java:1061)
         at sun.applet.AppletPanel.joinAppletThread(AppletPanel.java:155)
         at sun.applet.AppletPanel.sendEvent(AppletPanel.java:251)
         at sun.plugin.AppletViewer.onPrivateClose(AppletViewer.java:761)
         at sun.plugin.AppletViewer$1.run(AppletViewer.java:723)
         at java.lang.Thread.run(Thread.java:536)
    "AWT-EventQueue-11" prio=1 tid=0x0x84b5648 nid=0x54e7 in Object.wait() [bd7ff000..bd7ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x4496d9e0> (a java.awt.EventQueue)
         at java.lang.Object.wait(Object.java:426)
         at java.awt.EventQueue.getNextEvent(EventQueue.java:333)
         - locked <0x4496d9e0> (a java.awt.EventQueue)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "AWT-EventQueue-12" prio=1 tid=0x0x841f818 nid=0x54e6 in Object.wait() [bc9ff000..bc9ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449b0018> (a java.awt.EventQueue)
         at java.lang.Object.wait(Object.java:426)
         at java.awt.EventQueue.getNextEvent(EventQueue.java:333)
         - locked <0x449b0018> (a java.awt.EventQueue)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "TimerQueue" daemon prio=1 tid=0x0x8494238 nid=0x54e5 in Object.wait() [bc1ff000..bc1ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x449ad670> (a javax.swing.TimerQueue)
         at javax.swing.TimerQueue.run(TimerQueue.java:231)
         - locked <0x449ad670> (a javax.swing.TimerQueue)
         at java.lang.Thread.run(Thread.java:536)
    "thread applet-com.storigen.ui.BaseApplet" prio=1 tid=0x0x80f12a0 nid=0x54e2 in Object.wait() [bbffe000..bbfff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x48555af8> (a java.lang.Class)
         at java.lang.Object.wait(Object.java:426)
         at sun.plugin.navig.motif.Worker.enterRequest(Worker.java:341)
         - locked <0x48555af8> (a java.lang.Class)
         at sun.plugin.navig.motif.Worker.findCookieForURL(Worker.java:249)
         - locked <0x48555af8> (a java.lang.Class)
         at sun.plugin.net.cookie.MNetscape6CookieHandler.getCookieInfo(MNetscape6CookieHandler.java:73)
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:82)
         - locked <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449b29c8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:528)
         - locked <0x449b29c8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:66)
         at com.storigen.util.ASPipeLine.load(ASPipeLine.java:35)
         at com.storigen.ui.PipeLineTableModel.refresh(PipeLineTableModel.java:85)
         - locked <0x449b2ac0> (a com.storigen.ui.PipeLineTableModel)
         at com.storigen.ui.PipeLineTableModel.<init>(PipeLineTableModel.java:72)
         at com.storigen.ui.PipeLineTableModel.<init>(PipeLineTableModel.java:43)
         at com.storigen.su.ui.SoftwareVersionsPanel.layoutPanel(SoftwareVersionsPanel.java:84)
         at com.storigen.su.ui.SoftwareVersionsPanel.<init>(SoftwareVersionsPanel.java:65)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:306)
         at java.lang.Class.newInstance(Class.java:259)
         at com.storigen.ui.BaseApplet.initContentPane(BaseApplet.java:248)
         at com.storigen.ui.BaseApplet.init(BaseApplet.java:127)
         at sun.applet.AppletPanel.run(AppletPanel.java:347)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-62" daemon prio=1 tid=0x0x4ce50400 nid=0x54de waiting for monitor entry [bc7ff000..bc7ff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449b43e0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:528)
         - locked <0x449b43e0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:66)
         at com.storigen.util.ASPipeLine.load(ASPipeLine.java:35)
         at com.storigen.monitor.ui.DataUpdater.run(DataUpdater.java:94)
         at java.util.TimerThread.mainLoop(Timer.java:432)
         at java.util.TimerThread.run(Timer.java:382)
    "AWT-EventQueue-10" prio=1 tid=0x0x810d7d8 nid=0x54db in Object.wait() [bd5ff000..bd5ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x44939318> (a java.awt.EventQueue)
         at java.lang.Object.wait(Object.java:426)
         at java.awt.EventQueue.getNextEvent(EventQueue.java:333)
         - locked <0x44939318> (a java.awt.EventQueue)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "Thread-56" daemon prio=1 tid=0x0x810af58 nid=0x54d1 waiting for monitor entry [bcfff000..bcfff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449dd9c0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:528)
         - locked <0x449dd9c0> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:66)
         at com.storigen.util.ASPipeLine.load(ASPipeLine.java:35)
         at com.storigen.monitor.ui.DataUpdater.run(DataUpdater.java:94)
         at java.util.TimerThread.mainLoop(Timer.java:432)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-50" daemon prio=1 tid=0x0x4ce40458 nid=0x54c5 waiting for monitor entry [bc3ff000..bc3ff880]
         at sun.plugin.net.cookie.PluginCookieManager.getCookieInfo(PluginCookieManager.java:63)
         - waiting to lock <0x486e0f58> (a java.lang.Class)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectSetup(HttpURLConnection.java:322)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:165)
         - locked <0x449ddad8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:528)
         - locked <0x449ddad8> (a sun.plugin.net.protocol.http.HttpURLConnection)
         at com.storigen.util.ASPipeLine.getServletObject(ASPipeLine.java:66)
         at com.storigen.util.ASPipeLine.load(ASPipeLine.java:35)
         at com.storigen.monitor.ui.DataUpdater.run(DataUpdater.java:94)
         at java.util.TimerThread.mainLoop(Timer.java:432)
         at java.util.TimerThread.run(Timer.java:382)
    "TimerQueue" daemon prio=1 tid=0x0x80b7598 nid=0x546a in Object.wait() [bdbff000..bdbff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x4489aab0> (a javax.swing.TimerQueue)
         at javax.swing.TimerQueue.run(TimerQueue.java:231)
         - locked <0x4489aab0> (a javax.swing.TimerQueue)
         at java.lang.Thread.run(Thread.java:536)
    "AWT-EventQueue-0" prio=1 tid=0x0x84d6a88 nid=0x5458 waiting on condition [bd9ff000..bd9ff880]
         at sun.plugin.JavaRunTime.dumpAllStacks(Native Method)
         at sun.plugin.ConsoleWindow$1.actionPerformed(ConsoleWindow.java:149)
         at javax.swing.JComponent$ActionStandin.actionPerformed(JComponent.java:2863)
         at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1512)
         at javax.swing.JComponent.processKeyBinding(JComponent.java:2435)
         at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:253)
         at javax.swing.KeyboardManager.fireKeyboardAction(KeyboardManager.java:202)
         at javax.swing.JComponent.processKeyBindingsForAllComponents(JComponent.java:2512)
         at javax.swing.JComponent.processKeyBindings(JComponent.java:2504)
         at javax.swing.JComponent.processKeyEvent(JComponent.java:2398)
         at java.awt.Component.processEvent(Component.java:4902)
         at java.awt.Container.processEvent(Container.java:1566)
         at java.awt.Component.dispatchEventImpl(Component.java:3598)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Component.dispatchEvent(Component.java:3439)
         at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1688)
         at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:593)
         at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:765)
         at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:698)
         at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:559)
         at java.awt.Component.dispatchEventImpl(Component.java:3468)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Window.dispatchEventImpl(Window.java:1585)
         at java.awt.Component.dispatchEvent(Component.java:3439)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    "Thread-3" daemon prio=1 tid=0x0x84d1e98 nid=0x5456 in Object.wait() [bddff000..bddff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x4482ab60> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0x4482ab60> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Java2D Disposer" daemon prio=1 tid=0x0x84ca400 nid=0x5455 in Object.wait() [bdfff000..bdfff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x4482abe0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x4482abe0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at sun.java2d.Disposer.run(Disposer.java:97)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-2" prio=1 tid=0x0x83bb9c0 nid=0x5454 runnable [be1ff000..be1ff880]
         at sun.plugin.navig.motif.AThread.handleRequest(Native Method)
         at sun.plugin.navig.motif.AThread.JNIHandleLoop(AThread.java:35)
         at sun.plugin.navig.motif.AThread.run(AThread.java:27)
    "Thread-1" prio=1 tid=0x0x83f2ba8 nid=0x5451 waiting on condition [be3ff000..be3ff880]
         at java.lang.Thread.sleep(Native Method)
         at sun.plugin.navig.motif.Plugin$Watcher.run(Plugin.java:482)
    "Main Console Writer" prio=1 tid=0x0x81d12f8 nid=0x5450 in Object.wait() [be5ff000..be5ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x4480f8e0> (a java.util.LinkedList)
         at java.lang.Object.wait(Object.java:426)
         at sun.plugin.MainConsoleWriter.run(MainConsoleWriter.java:106)
         - locked <0x4480f8e0> (a java.util.LinkedList)
         at java.lang.Thread.run(Thread.java:536)
    "AWT-Motif" daemon prio=1 tid=0x0x81cfda8 nid=0x544f runnable [be7ff000..be7ff880]
         at sun.awt.motif.MToolkit.run(Native Method)
         at java.lang.Thread.run(Thread.java:536)
    "AWT-Shutdown" prio=1 tid=0x0x81a6fd0 nid=0x544e in Object.wait() [be9ff000..be9ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x447d84c0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:426)
         at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
         - locked <0x447d84c0> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:536)
    "Signal Dispatcher" daemon prio=1 tid=0x0x808b330 nid=0x544c runnable [0..0]
    "Finalizer" daemon prio=1 tid=0x0x8087f90 nid=0x5449 in Object.wait() [bf3ff000..bf3ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x447aff98> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x447aff98> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=1 tid=0x0x8086478 nid=0x5448 in Object.wait() [bf5ff000..bf5ff880]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x447b0000> (a java.lang.ref.Reference$Lock)
         at java.lang.Object.wait(Object.java:426)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:113)
         - locked <0x447b0000> (a java.lang.ref.Reference$Lock)
    "main" prio=1 tid=0x0x804e5f8 nid=0x5445 runnable [bfff6000..bfff69f8]
         at java.io.FileInputStream.read(Native Method)
         at java.io.DataInputStream.readInt(DataInputStream.java:392)
         at sun.plugin.navig.motif.Plugin.doit(Plugin.java:191)
         at sun.plugin.navig.motif.Plugin.start(Plugin.java:103)
    "VM Thread" prio=1 tid=0x0x8083238 nid=0x5447 runnable
    "VM Periodic Task Thread" prio=1 tid=0x0x808e6d8 nid=0x544a waiting on condition
    "Suspend Checker Thread" prio=1 tid=0x0x808f3b8 nid=0x544b runnable
    Done.

    I believe I have run into this issue, or a related one, when performing requests quickly. The workaround posted above does not seem to fix my situation, and I an unable to find the bug post for this problem. Does anyone have any further information regarding this issue, or able to recognize the problem using the following thread dump?
    Thanks!
    Dump thread stack ...
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode,
    sharing):
    "TimerQueue" daemon prio=1 tid=0x098b4bf8 nid=0x62f7 in Object.wait()
    [0x091fd000..0x091fd1b0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x88c55c40> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:233)
    - locked <0x88c55c40> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    "ConsoleWriterThread" daemon prio=1 tid=0x098c6c70 nid=0x62f6 in
    Object.wait() [0x06dac000..0x06dace30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x89176fe8> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:474)
    at com.sun.deploy.util.ConsoleTraceListener$ConsoleWriterThread.run
    (ConsoleTraceListener.java:72)
    - locked <0x89176fe8> (a java.lang.Object)
    "Thread-29" prio=1 tid=0x09997c18 nid=0x62f2 waiting for monitor entry
    [0x089f5000..0x089f5eb0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e077b0> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.storage.h.a(SourceFile:58)
    at com.tms.tscp.webmon.panel.storage.b.n(SourceFile:85)
    at com.tms.tscp.webmon.panel.storage.b.b(SourceFile:67)
    at com.tms.swing.k.run(SourceFile:63)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-25" prio=1 tid=0x099a6508 nid=0x62ee waiting for monitor entry
    [0x07a5c000..0x07a5d0b0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e07940> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.raid.b.c(SourceFile:198)
    at com.tms.tscp.webmon.panel.raid.c.n(SourceFile:36)
    at com.tms.swing.k.run(SourceFile:60)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-20" prio=1 tid=0x098c3530 nid=0x62e8 waiting for monitor entry
    [0x05a7f000..0x05a7ff30]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e07ae8> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.storage.h.a(SourceFile:58)
    at com.tms.tscp.communication.storage.a.a(SourceFile:19)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-19" prio=1 tid=0x097f3c30 nid=0x62e7 waiting for monitor entry
    [0x031e9000..0x031e9fb0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e07c78> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.storage.h.a(SourceFile:58)
    at com.tms.tscp.communication.storage.a.a(SourceFile:19)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-17" prio=1 tid=0x096f1398 nid=0x62e5 waiting for monitor entry
    [0x055df000..0x055e00b0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e07e08> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.log.b.a(SourceFile:33)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-16" prio=1 tid=0x097e2f78 nid=0x62e4 waiting on condition
    [0x03169000..0x03169130]
    at java.lang.Thread.sleep(Native Method)
    at com.tms.tscp.communication.stats.d.run(SourceFile:49)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-15" prio=1 tid=0x09819490 nid=0x62e1 waiting for monitor entry
    [0x06837000..0x06837eb0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e07f98> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.storage.j.a(SourceFile:22)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-14" prio=1 tid=0x096d9820 nid=0x62df in Object.wait()
    [0x03a0b000..0x03a0bfb0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x8cd02dd8> (a java.lang.Class)
    at java.lang.Object.wait(Object.java:474)
    at sun.plugin.navig.motif.Worker.enterRequest(Worker.java:329)
    - locked <0x8cd02dd8> (a java.lang.Class)
    at sun.plugin.navig.motif.Worker.findCookieForURL(Worker.java:236)
    - locked <0x8cd02dd8> (a java.lang.Class)
    at sun.plugin.net.cookie.MNetscape6CookieHandler.getCookieInfo
    (MNetscape6CookieHandler.java:74)
    at com.sun.deploy.net.cookie.DeployCookieManager.getCookieInfo
    (DeployCookieManager.java:83)
    - locked <0x8cd4fd70> (a java.lang.Class)
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - locked <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e08190> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.environmental.b.a(SourceFile:71)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-13" prio=1 tid=0x0963ebb0 nid=0x62dd waiting for monitor entry
    [0x06b6c000..0x06b6d0b0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e08478> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.storage.i.a(SourceFile:23)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-12" prio=1 tid=0x0963e7f8 nid=0x62dc waiting for monitor entry
    [0x052d5000..0x052d6130]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e08608> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.raid.c.a(SourceFile:37)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-11" prio=1 tid=0x0963e470 nid=0x62db waiting for monitor entry
    [0x05c92000..0x05c931b0]
    at com.sun.deploy.net.cookie.DeployCookieSelector.get
    (DeployCookieSelector.java:70)
    - waiting to lock <0x8916fbb0> (a
    com.sun.deploy.net.cookie.DeployCookieSelector)
    at sun.net.www.protocol.http.HttpURLConnection.addRequestCookies
    (HttpURLConnection.java:440)
    at sun.net.www.protocol.http.HttpURLConnection.writeRequests
    (HttpURLConnection.java:406)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (HttpURLConnection.java:934)
    - locked <0x89e08798> (a sun.net.www.protocol.http.HttpURLConnection)
    at java.net.URLConnection.getContent(URLConnection.java:682)
    at com.tms.tscp.soap.a.a(SourceFile:146)
    at com.tms.tscp.communication.raid.d.a(SourceFile:40)
    at com.tms.tscp.communication.polling.c.run(SourceFile:96)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-2" prio=1 tid=0x09981b00 nid=0x62d4 in Object.wait()
    [0x077c6000..0x077c7130]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:474)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:345)
    - locked <0x89186108> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy
    (EventDispatchThread.java:189)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy
    (EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "Thread-7" prio=1 tid=0x09979e90 nid=0x62d3 waiting on condition
    [0x08621000..0x086211b0]
    at java.lang.Thread.sleep(Native Method)
    at com.tms.tscp.webmon.systree.j.run(SourceFile:461)
    at java.lang.Thread.run(Thread.java:595)
    "TimerQueue" daemon prio=1 tid=0x098f96e8 nid=0x62ce in Object.wait()
    [0x08491000..0x08492030]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x8964ea58> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:233)
    - locked <0x8964ea58> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-1" prio=1 tid=0x09929930 nid=0x62ca waiting on condition
    [0x057ff000..0x057ffe30]
    at sun.plugin.JavaRunTime.dumpAllStacks(Native Method)
    at sun.plugin.util.PluginConsoleController.dumpAllStacks
    (PluginConsoleController.java:107)
    at com.sun.deploy.util.ConsoleWindow$1.actionPerformed
    (ConsoleWindow.java:119)
    at javax.swing.JComponent$ActionStandin.actionPerformed
    (JComponent.java:3227)
    at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1571)
    at javax.swing.JComponent.processKeyBinding(JComponent.java:2763)
    at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:255)
    at javax.swing.KeyboardManager.fireKeyboardAction
    (KeyboardManager.java:204)
    at javax.swing.JComponent.processKeyBindingsForAllComponents
    (JComponent.java:2840)
    at javax.swing.JComponent.processKeyBindings(JComponent.java:2832)
    at javax.swing.JComponent.processKeyEvent(JComponent.java:2726)
    at java.awt.Component.processEvent(Component.java:5265)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.KeyboardFocusManager.redispatchEvent
    (KeyboardFocusManager.java:1810)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent
    (DefaultKeyboardFocusManager.java:672)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent
    (DefaultKeyboardFocusManager.java:920)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions
    (DefaultKeyboardFocusManager.java:798)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent
    (DefaultKeyboardFocusManager.java:636)
    at java.awt.Component.dispatchEventImpl(Component.java:3841)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy
    (EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy
    (EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "thread applet-com.tms.tscp.webmon.main.WebmonApplet.class" prio=1
    tid=0x09828d40 nid=0x62c4 in Object.wait() [0x07d80000..0x07d81130]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x8918a880> (a sun.plugin.AppletViewer)
    at java.lang.Object.wait(Object.java:474)
    at sun.applet.AppletPanel.getNextEvent(AppletPanel.java:282)
    - locked <0x8918a880> (a sun.plugin.AppletViewer)
    at sun.applet.AppletPanel.run(AppletPanel.java:332)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-0" prio=1 tid=0x096bddb0 nid=0x62c1 in Object.wait()
    [0x0706e000..0x0706eeb0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x891497a8> (a java.awt.EventQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:345)
    - locked <0x891497a8> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy
    (EventDispatchThread.java:189)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy
    (EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents
    (EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "AWT-Shutdown" prio=1 tid=0x096bcad0 nid=0x62c0 in Object.wait()
    [0x02f9b000..0x02f9bf30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x89130670> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:474)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x89130670> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:595)
    "Thread-2" prio=1 tid=0x096b3978 nid=0x62bf runnable
    [0x03de6000..0x03de6fb0]
    at sun.plugin.navig.motif.AThread.handleRequest(Native Method)
    at sun.plugin.navig.motif.AThread.JNIHandleLoop(AThread.java:35)
    at sun.plugin.navig.motif.AThread.run(AThread.java:27)
    "Thread-1" prio=1 tid=0x096956c0 nid=0x62bc waiting on condition
    [0x02f1a000..0x02f1b030]
    at java.lang.Thread.sleep(Native Method)
    at sun.plugin.navig.motif.Plugin$Watcher.run(Plugin.java:485)
    "traceMsgQueueThread" daemon prio=1 tid=0x0968d7c0 nid=0x62ba in
    Object.wait() [0x030cb000..0x030cc130]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x8914d110> (a java.util.ArrayList)
    at java.lang.Object.wait(Object.java:474)
    at com.sun.deploy.util.Trace$TraceMsgQueueChecker.run(Trace.java:74)
    - locked <0x8914d110> (a java.util.ArrayList)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-XAWT" daemon prio=1 tid=0x09679420 nid=0x62b9 runnable
    [0x08176000..0x081761b0]
    at sun.awt.X11.XToolkit.waitForEvents(Native Method)
    at sun.awt.X11.XToolkit.run(XToolkit.java:463)
    at sun.awt.X11.XToolkit.run(XToolkit.java:438)
    at java.lang.Thread.run(Thread.java:595)
    "Java2D Disposer" daemon prio=1 tid=0x09668180 nid=0x62b8 in Object.wait
    () [0x0577b000..0x0577be30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x89115db0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x89115db0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at sun.java2d.Disposer.run(Disposer.java:107)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=1 tid=0x095b4118 nid=0x62b6 runnable
    [0x00000000..0x00000000]
    "CompilerThread0" daemon prio=1 tid=0x095b2bb8 nid=0x62b5 waiting on
    condition [0x00000000..0x02e18998]
    "Signal Dispatcher" daemon prio=1 tid=0x095b1ca0 nid=0x62b4 runnable
    [0x00000000..0x00000000]
    "Finalizer" daemon prio=1 tid=0x095ac028 nid=0x62b3 in Object.wait()
    [0x04baf000..0x04bb00b0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x89115f58> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x89115f58> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=1 tid=0x095aa1a8 nid=0x62b2 in
    Object.wait() [0x00aa0000..0x00aa0130]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x89115fd8> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x89115fd8> (a java.lang.ref.Reference$Lock)
    "main" prio=1 tid=0x09566cd8 nid=0x62b0 runnable
    [0xbff6b000..0xbff6c0a8]
    at java.io.FileInputStream.read(Native Method)
    at java.io.DataInputStream.readInt(DataInputStream.java:353)
    at sun.plugin.navig.motif.Plugin.doit(Plugin.java:173)
    at sun.plugin.navig.motif.Plugin.start(Plugin.java:104)
    "VM Thread" prio=1 tid=0x095a7648 nid=0x62b1 runnable
    "VM Periodic Task Thread" prio=1 tid=0x095b55b8 nid=0x62b7 waiting on
    condition
    Done.

  • Applet loading presentation

    Hi all guys.
    Is there anyone who knows if the grey loading screen of an applet can be avoided? Or just replaced? I'm using j2sdk.1.4.0
    Thanks for your time.
    Ramon Maria.

    Yes ,you can.
    contain: setBackground(Color.blue)
    in your code .

  • Applet loading Api?

    Hi,
    is there a way to somehow replace original java spinning logo during applet loading with something else, and also is there a way to control the applet loading via some kind of api?
    my second question is, is there an api to load one javaFX bin file into another and access its classes via API? so basically not just load as a stream of bytes but so that loader can talk to it afterward?
    and all that durring runtime?
    if anybody knows relative info, blog, or discussion I would appreciate if you can share it
    regards
    L.
    Edited by: dlevancho on Apr 2, 2009 5:44 PM

    This "string parameter" is doing exactly what you ask for: "+replace original java spinning logo during applet loading with something else+"...
    I also remember a blog article telling how to use a small applet to show a complex load screen, then to be substituted with the larger final applet, but I don't recall where I saw that.

  • Unable to boot Z10, stuck on loading screen at 99% after a few hours.

    Hi, I am unable to boot Z10, stuck on loading screen at 99% after a few hours. I did not try to update, nor load any other OS versions.  Running a Bell Canada 10.1.  Tried to pull battery, leave phone boot for 5 hours, still stuck on 99%.  I tried plugging it in BB Link and computer will not recognize it.

    dazedandconfused wrote:
    Every option Im seeing is telling me Im going to lose my data... is this true? I know with other phones ppl are able to mount the device as if it were a hard drive and pull content from it... is this not possible with the Z10? Thanks...
    I understand you are frustrated and seeking solutions, but please don't double and triple post your inquiry.
    I've answered your thread already, here: 
    Re: Z10 stuck on loading logo on starting up
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My White Macbook is stuck at the loading screen, and disk utility, safe mode doesn't work either. What should I do?

    I went on vacation a few days ago and in El Salvador, they have this mobile broadband sticks. Well, I was using one until it gave me a network error. After that, it shut down my computer entirely. The first time it happened, I didn't think much of it. I took the battery out and put it back in for it could work. It happened another two times, and after the third time, my MacBook stays stuck at the loading screen, and it will take 5-10 minutes on that screen, before it shuts down, or it wouldn't turn on at all. I've tried booting into safe mode, but it appears to not boot into it. I've tried resetting the Pram, and using disk utility, but that still won't work. I don't know what else to do to make it boot into  OS X  Lion.
    I'm an AP student, and the majority of my work is in that computer, and it is very important! What can I do? Not only that, but I enter school in a few weeks and I need the AP work by the time I enter.
    What can I do? Can someone help?
    Thanks

    Reinstalling Lion Without the Installer
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Since updating to I.O.S7 on my ipad2 all i get when i turn it on is a loading screen with a picture of a charger going into an ITUNES sign? HELP nothing will work not interactive at all?

    all i get when i turn it on is a loading screen with a picture of a charger going into an ITUNES sign? HELP nothing will work not interactive at all.aince updating to I.O.S7.0.2???
    What should i do currently have it on charge for several hours not done a thing and have been locking and unlocking and resetting

    Please see: http://support.apple.com/kb/HT1808 for further info.  It sounds like you are already in Recovery mode so if the image in Step 4 is the one you see, skip to Step 5.
    Regards,
    Steve

  • Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs.

    Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs. can't get any further - Tried all suggestions like clearing browser caches but no change.
    Got a couple of projects i wanted to try this on and if the software works I will probably take a subscription but considering this isn't working at all will look elsewhere.
    Also - adobe live chat support is useless.

    Hi,
    please share the Adobe ID that you are using with DL-AdobeStory-support<at>adobe<dot>com and we will investigate the issue.
    Thanks
    Aurobinda

Maybe you are looking for

  • IPod Touch + iTunes + Windows Vista = NOT SYNCING!

    I used to have no problem syncing my iPod Touch 3rd Gen to the computer. I now can no longer sync it. I have done countless of fixes, including clearing temp folder, deleting and reinstalling drivers, etc. Pretty much everything but wipe my harddrive

  • Log file in cfmx7

    Running CFMX7, IIS6 on Win2k3. Using <unfortunately> multiple Ms-Access 2000 mdbs. One application in particular is erroring out constantly. I have "maintain connections" unchecked. Line 86 is the location of the update query. The update query DOES N

  • I have problem downloading the itunes for mac and safari says it needs to send the form again.

    Hello There, I have been facing this problem for a while. Once I download the ITunes for my Mac the safari says the following: Are you sure you want to send a form again? To reopen this page Safari must resend a form. This might result in duplicate p

  • Trying to test Lite 10.3.0.3.0

    Hi Im getting the following err when try to deploy a new publication in 10.3.0.3.0 on a lite server configured on windows xp cons 10049 - ORA12899 value too large for column MOBILEADMIN.C$all_publications.SET_DFLT_COL_OPTIONS actual =4 max =1 The new

  • Access stolen Serial Number from "Find my Device"

    Hi, my Macbook has been stolen and Im trying to figure out its Serial Number to report it stolen with the police. It is registered with my Apple ID but for some reason its not showing up unter "My Support Profile" (where I could normally see the Seri