Java Applet Panel problems with CardLayout

Hi, I have a problem a I have been stucked for 2 days.
I created 3 Panels to use with CardLayout. I would switch between those 3 panels depending on user interaction. I have some textfields and text areas on the 2nd and 3rd Panel. On the 1st panel, I would like to use g.drawstring to write some stuff on that panel, but the words would be blocked off if it goes to where the components are on the other panels.
Thanks.

import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.awt.font.*;
public class CardTest extends Applet
    Panel panel;
    CardLayout cards;
    public void init()
    {   cards = new CardLayout();
        panel = new Panel(cards);
        panel.add("one", new GraphicPanel());
        panel.add("two", getPanel("panel two"));
        panel.add("three", getPanel("panel three"));
        setLayout(new BorderLayout());
        add(getNavPanel(), "North");
        add(panel);
    private Panel getNavPanel()
        final Button
            last = new Button("last"),
            next = new Button("next");
        ActionListener l = new ActionListener()
            public void actionPerformed(ActionEvent e)
                Button button = (Button)e.getSource();
                if(button == last)
                    cards.previous(panel);
                if(button == next)
                    cards.next(panel);
        last.addActionListener(l);
        next.addActionListener(l);
        Panel panel = new Panel();
        panel.add(last);
        panel.add(next);
        return panel;
    private Panel getPanel(String s)
        Panel panel = new Panel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.weighty = 1.0;
        gbc.gridwidth = GridBagConstraints.REMAINDER;
        panel.add(new Button("button"), gbc);
        panel.add(new TextArea(s, 8, 16), gbc);
        return panel;
    public static void main(String[] args)
        Applet applet = new CardTest();
        Frame f = new Frame();
        f.addWindowListener(new WindowAdapter()
            public void windowClosing(WindowEvent e)
                System.exit(0);
        f.add(applet);
        f.setSize(400,400);
        f.setLocation(200,200);
        applet.init();
        f.setVisible(true);
class GraphicPanel extends Panel
    Font font;
    String text;
    final int PAD = 25;
    public GraphicPanel()
        font = new Font("lucida bright regular", Font.PLAIN, 22);
        text = "Hello World";
    public void paint(Graphics g)
        super.paint(g);
        Graphics2D g2 = (Graphics2D)g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                            RenderingHints.VALUE_ANTIALIAS_ON);
        int w = getWidth();
        int h = getHeight();
        int dia = Math.min(w,h)/6;
        g2.setPaint(Color.blue);
        g2.drawLine(PAD, PAD, w - PAD, PAD);
        g2.drawLine(PAD, h - PAD, w - PAD, h - PAD);
        g2.setPaint(Color.green.darker());
        g2.drawOval(w/2 - dia/2, h*2/3, dia, dia);
        g2.setFont(font);
        FontRenderContext frc = g2.getFontRenderContext();
        float width = (float)font.getStringBounds(text, frc).getWidth();
        LineMetrics lm = font.getLineMetrics(text, frc);
        float x = (w - width)/2;
        float y = (h + lm.getHeight())/2 -lm.getDescent();
        g2.setPaint(Color.black);
        g2.drawString(text, x, y);
}

Similar Messages

  • Java Webstart application problem with TLS certificate revocation checks (Java 1.7.0_76)

    We have a problem with our Java Web Start Application regarding the TLS certificate revocation check:
    The application is running on a server within a wide area network which is separated from the internet.
    The application users have access to the WAN, and also access to the internet over some corporate proxy/firewall.
    The user has to enter, for example "https://my-site.de/myapp/ma.jnlp" within a webbrowser or could also call  "javaws https://my-site.de/myapp/ma.jnlp" to start the application client.
    The webserver has a certificate from a trusted certificate authority. This certificate seems to be ok, the browser is even configured to perform OCSP status check.
    The application files are signed with a certificate from another trusted certificate authority. This certificate seems also to be ok. Regarding this certificate there
    are no problems with certificate revocation checks.
    The problem is, while starting the application client there is a message box which tell us something like "the connection to this website ist not trustworthy",
    "Website: https://my-site.de:80", and something about an invalid certificate, meaning the webserver certificate.
    Obviously the jvm runtime, which is executed on the users workstation, tries to perform a revocation check for the webservers certificate, but this fails because
    it cannot fetch the certificate under https://my-site.de:80.
    The application will execute without further problems after that message but the users are very concerned about the "invalid" certificate, so here are my questions:
    - Why is the application trying to get the webserver certificate over Port 80. Our application developers told me, there is no corresponding statement. Calling this address
      has to fail while "https://my-site.de:443" or "https://my-site.de" would not have a problem.
    - Is there a way to make the application go on without performing a tls revocation check? I mean, by adjusting the application sourcecode and not by configuring the users Java Control Panel.
      While disabling the TLS Certificate Revocation check in the Java Control Panel, the Webstart Application executes without a warning message, but this is not a workable solution for
      our users.
    It would be great if someone can help me with a hint so i can send our developers into the right direction;-)
    Many thanks!
    This is a part from a java console output after calling "javaws -verbose https://my-site.de/myapp/"
    (sorry for this is in german... and also my english above)
    network: Verbindung von http://ocsp.serverpass.telesec.de/ocspr mit Proxy=HTTP @ internet-proxy.***:80 wird hergestellt
    network: Verbindung von http://ocsp.serverpass.telesec.de/ocspr mit Proxy=HTTP @ internet-proxy.***:80 wird hergestellt
    security: OCSP Response: GOOD
    network: Verbindung von http://ocsp.serverpass.telesec.de/ocspr mit Proxy=HTTP @ internet-proxy.***:80 wird hergestellt
    security: UNAUTHORIZED
    security: Failing over to CRLs: java.security.cert.CertPathValidatorException: OCSP response error: UNAUTHORIZED
    network: Cacheeintrag gefunden [URL: http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl, Version: null] prevalidated=false/0
    cache: Adding MemoryCache entry: http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl
    cache: Resource http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl has expired.
    network: Verbindung von http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl mit Proxy=HTTP @ internet-proxy.***:80 wird hergestellt
    network: Verbindung von http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl mit Proxy=HTTP @ internet-proxy.***:80 wird hergestellt
    network: ResponseCode für http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl: 200
    network: Codierung für http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl: null
    network: Verbindung mit http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl trennen
    CacheEntry[http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl]: updateAvailable=true,lastModified=Tue Mar 24 10:50:01 CET 2015,length=53241
    network: Verbindung von http://crl.serverpass.telesec.de/rl/TeleSec_ServerPass_CA_1.crl mit Proxy=HTTP @ internet-proxy.***:80 wird
    network: Verbindung von socket://ldap.serverpass.telesec.de:389 mit Proxy=DIRECT wird hergestellt
    security: Revocation Status Unknown
    com.sun.deploy.security.RevocationChecker$StatusUnknownException: java.security.cert.CertPathValidatorException: OCSP response error: UNAUTHORIZED
        at com.sun.deploy.security.RevocationChecker.checkOCSP(Unknown Source)
        at com.sun.deploy.security.RevocationChecker.check(Unknown Source)
        at com.sun.deploy.security.RevocationCheckHelper.doRevocationCheck(Unknown Source)
        at com.sun.deploy.security.RevocationCheckHelper.doRevocationCheck(Unknown Source)
        at com.sun.deploy.security.RevocationCheckHelper.checkRevocationStatus(Unknown Source)
        at com.sun.deploy.security.X509TrustManagerDelegate.checkTrusted(Unknown Source)
        at com.sun.deploy.security.X509Extended7DeployTrustManagerDelegate.checkServerTrusted(Unknown Source)
        at com.sun.deploy.security.X509Extended7DeployTrustManager.checkServerTrusted(Unknown Source)
        at sun.security.ssl.ClientHandshaker.serverCertificate(Unknown Source)
        at sun.security.ssl.ClientHandshaker.processMessage(Unknown Source)
        at sun.security.ssl.Handshaker.processLoop(Unknown Source)
        at sun.security.ssl.Handshaker.process_record(Unknown Source)
        at sun.security.ssl.SSLSocketImpl.readRecord(Unknown Source)
        at sun.security.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
        at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
        at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
        at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)
        at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
        at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
        at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
        at com.sun.deploy.net.HttpUtils.followRedirects(Unknown Source)
        at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
        at com.sun.deploy.net.BasicHttpRequest.doGetRequestEX(Unknown Source)
        at com.sun.deploy.cache.ResourceProviderImpl.checkUpdateAvailable(Unknown Source)
        at com.sun.deploy.cache.ResourceProviderImpl.isUpdateAvailable(Unknown Source)
        at com.sun.deploy.cache.ResourceProviderImpl.getResource(Unknown Source)
        at com.sun.deploy.cache.ResourceProviderImpl.getResource(Unknown Source)
        at com.sun.deploy.model.ResourceProvider.getResource(Unknown Source)
        at com.sun.javaws.jnl.LaunchDescFactory._buildDescriptor(Unknown Source)
        at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
        at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
        at com.sun.javaws.Main.launchApp(Unknown Source)
        at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
        at com.sun.javaws.Main.access$000(Unknown Source)
        at com.sun.javaws.Main$1.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
        Suppressed: com.sun.deploy.security.RevocationChecker$StatusUnknownException
            at com.sun.deploy.security.RevocationChecker.checkCRLs(Unknown Source)
            ... 35 more
    Caused by: java.security.cert.CertPathValidatorException: OCSP response error: UNAUTHORIZED
        at sun.security.provider.certpath.OCSP.check(Unknown Source)
        at sun.security.provider.certpath.OCSP.check(Unknown Source)
        at sun.security.provider.certpath.OCSP.check(Unknown Source)
        ... 36 more
    security: Ungültiges Zertifikat vom HTTPS-Server
    network: Cacheeintrag nicht gefunden [URL: https://my-site.de:80, Version: null]

    Add the JSF Jars to the WEB-INF/lib directory of the application. If still getting error add to the CLASSPATH variable in the startWebLogic script in the domain/bin directory.

  • Java Applets not working with Firefox 5 properly

    Java Applets work sometime. But after sometime the Java icon at the bottom (near date & time) disappears. After this no matter what I do it does not work. Java Applets are used in this case to draw charts. The same charts come out properly in Internet Explorer. But I prefer using Firefox for its speed. What is the reason for this problem ?

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> ''Firefox will: '''select "Remember History"'''''
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • [APPLET][Heritage] Problem with classes

    Hi, I'm developping a simple JAVA Applet and I have a problem
    I have a class called LUIweb which is the main class. Here is a part of it.
    public class LUIweb extends JApplet implements Runnable {
    public void run() {
    DisplayMessage("JAVA rocks");
    public void DisplayMessage(String message){
    jtextArea.append(message);
    middlePanel.removeAll();
    middlePanel.add(textScrollPane, BorderLayout.CENTER);
    middlePanel.validate();
    middlePanel.repaint();
    It displays the message "JAVA rocks" in my JTextArea. But when another class from the same package calls DisplayMessage, nothing is displayed in my JTextArea
    public class Data_net extends LUIweb{
    public void Test(){
    DisplayMessage("NON");
    Have you got any idea to fix that?
    Thank you for you help

    OK,
    You are using a separate thread to update the gui. As swing is not multithread safe, this is not good. Anytime you want to change the gui, you must do it on the gui thread. This means without extra help, you should only change the gui from within a Listener, such as a MouseListener, KeyListener, etc, etc.
    In your case, you are updating the not from the gui thread (not from a Listener), and so you must ask the gui thread to do the work for you when it has time.
    This means you need to use SwingUtilities.invokeLater or SwingUtilities.invokeAndWait.
    Since the sequencing is important to you in your code, you should probably use invokeAndWait, such as
    public void run()
              SwingUtilities.invokeAndWait( new Runnable()
                     public void run() { DisplayMessage(Language.CONNECT_DB); }
              Data_net Donnee_net=new Data_net();          
              SwingUtilities.invokeAndWait( new Runnable()
                     public void run() { DisplayMessage("Connecting to "+Donnee_net.GetHost()+
                                                       " with user "+Donnee_net.GetUser()+"...\n");
              Donnee_net.Test();   

  • Java.util.logging - Problem with setting different Levels for each Handler

    Hello all,
    I am having issues setting up the java.util.logging system to use multiple handlers.
    I will paste the relevant code below, but basically I have 3 Handlers. One is a custom handler that opens a JOptionPane dialog with the specified error, the others are ConsoleHandler and FileHandler. I want Console and File to display ALL levels, and I want the custom handler to only display SEVERE levels.
    As it is now, all log levels are being displayed in the JOptionPane, and the Console is displaying duplicates.
    Here is the code that sets up the logger:
    logger = Logger.getLogger("lib.srr.applet");
    // I have tried both with and without the following statement          
    logger.setLevel(Level.ALL);
    // Log to file for all levels FINER and up
    FileHandler fh = new FileHandler("mylog.log");
    fh.setFormatter(new SimpleFormatter());
    fh.setLevel(Level.FINER);
    // Log to console for all levels FINER and up
    ConsoleHandler ch = new ConsoleHandler();
    ch.setLevel(Level.FINER);
    // Log SEVERE levels to the User, through a JOptionPane message dialog
    SRRUserAlertHandler uah = new SRRUserAlertHandler();
    uah.setLevel(Level.SEVERE);
    uah.setFormatter(new SRRUserAlertFormatter());
    // Add handlers
    logger.addHandler(fh);
    logger.addHandler(ch);
    logger.addHandler(uah);
    logger.info(fh.getLevel().toString() + " -- " + ch.getLevel().toString() + " -- " + uah.getLevel().toString());
    logger.info("Logger Initialized.");Both of those logger.info() calls displays to the SRRUserAlertHandler, despite the level being set to SEVERE.
    The getLevel calls displays the proper levels: "FINER -- FINER -- SEVERE"
    When I start up the applet, I get the following in the console:
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.Notice they all display twice. Each of those are also being displayed to the user through the JOptionPane dialogs.
    Any ideas how I can properly set this up to send ONLY SEVERE to the user, and FINER and up to the File/Console?
    Thanks!
    Edit:
    Just in case, here is the code for my SRRUserAlertHandler:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              JOptionPane.showMessageDialog(null, arg0.getMessage());
    }Edited by: compbry15 on Apr 28, 2009 9:44 AM

    For now I have fixed the issue of setLevel not working by making a Filter class:
    public class SRRUserAlertFilter implements Filter {
         public boolean isLoggable(LogRecord arg0) {
              if (arg0.getLevel().intValue() >= Level.WARNING.intValue()) {
                   System.err.println(arg0.getLevel().intValue() + " -- " + Level.WARNING.intValue());
                   return true;
              return false;
    }My new SRRUserAlertHandler goes like this now:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              Filter theFilter = this.getFilter();
              if (theFilter.isLoggable(arg0))
                   JOptionPane.showMessageDialog(null, arg0.getMessage());
    }This is ugly as sin .. but I cannot be required to change an external config file when this is going in an applet.
    After much searching around, this logging api is quite annoying at times. I have seen numerous other people run into problems with it not logging specific levels, or logging too many levels, etc. A developer should be able to complete configure the system without having to modify external config files.
    Does anyone else have another solution?

  • Java Front-end problems with Windows 200 Pro

    Hi,
    I have some problem on my pc with java applications front-end. I have windows 2000 Professional and use java(TM) 2 SDK, Standard Edition Version 1.3.1
    Using every java applications (also development environment as JBuilder 4 Professional and Together 4) I have always problems with front-end: the text is bad visualized everytime I use the scroolbar, menu items into a menu are bad visualized while I drag over of them the mouse and so on...
    To try to solve this my problem I have just installed Service Pack 2 for Windows 2000 Pro but I have not had good results - I keep to have the usual problem.
    I'm aware that it is difficult to reproduce and however if anyone has some idea to solve my problem I am opened to every suggestion.
    Thanks in advance

    the text says that what technolody that they are using its called "Off Screen Images" once i used them in my applications to improve the prefomance.
    What they says is to improve the time it takes to display componants that display text on them (Such as buttons, Labels...) they going to create an Off Screen Image of the text and then paste that image on to the screen whenever the componant has to be displayed/Re displayed instead of redrowing (Re rendering) the text on the screen repeatedly which take more time and processing power than rendering once and paste it to screen whenever needed but this solution will take some more memory.

  • Spry tabbed panels, opening a tabbed panel,  problem with IE

    i've have made a site, with tabbed panels,
    all the pages are made of a template;
    everythings works fine; in Firefox and Opera,
    but only in IE when i open a tabbed panel from a menubar, the contents  is opened behind my header location;
    i've used spry 1.6.1 and spryUtils to open the tabbed panel.
    because there no other posibilty to open  a tabbed panel from my other page.
    i've tested the site on CSS and all, and i've don't get any errors.
    this site is only on our intranet, and DVD;
    so is not a online site
    i' dont have anything modified in the java script.
    just changed some minor adjustments to the CSS of the tabbed panels
    The page is containing a fixed footer and header, FOR all browsers therefore is the CSS IE hacks also.
    and all other functions work normal.
    i'm only a beginner at this
    CSS
    body,html {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
    body{
        color: #000;
        background-attachment: fixed;
        background-image: url(../afbeeldingen/Sitepictures/HaupteingangPB.jpg);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 95%;
    #img2 {
        height: 2cm;
        width: 2cm;
        border:0;
    #img {
        margin-right: 10px;
        height: 3cm;
        width: 3cm;
        border:0;
    TD{
        font-family: Arial;
        font-size: 8pt;
        line-height: normal;
        vertical-align: top;
        text-align: left;
    #header-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
    #header-container {
        height: 120px;
        background-repeat: repeat-x;
        background-position: left bottom;
    #header {
        width: 1040px;
        margin: 0 auto;
        position: relative;
    #header-content{
        width: 1040px;
        position: relative;
        background-image: url(../afbeeldingen/Sitepictures/background.jpg);
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
    #header ul li {
        float: left;
        margin-right: 2px;
    #container {
        width: 1040px;
        padding-top: 120px;
        padding-bottom:50px;
        background-color: #FFF;
        margin-bottom: 0px;
        left: auto;
        right: auto;
        margin-right: auto;
        margin-left: auto;
        position: relative;
        height: auto;
        min-height:100%;
    #container a:link {
        color: #00C;
        text-decoration: none;
    #container a:visited {
        color: #F8495A;
        text-decoration: none;
    #container a:hover {
        color: #00C;
        text-decoration: underline;
    #container a:active {
        color: #00B004;
        text-decoration: none;
    #kolommaker
        width:1040px;
        background-color: #CEECAE;
        height: 100%;
        float: left;   
    #boven {
        width: 1040px;
        position: static;
        height: 180px;
        background-color: #FFF;
    #sitecontent {
        width: 1040px;
        background-color: #FFF;
        height: 100%;
    #TabbedPanels1 {
        width: 1040px;
        position: static;
        background-color: #FFF;
        height: 100%;
        float: left;
    .links, .rechts, .midden {
        height:100%;
        display: inline-table;
        background-color: #FFF;
    .links{
        float: left;
        width: 330px;
        font-size: 12px;
        padding-top: 5px;
        margin-top: 0px;
        margin-right: auto;
        margin-left: auto;
    .rechts{
        padding-top: 5px;
        float: right;
        width: 330px;
        text-align: left;
        font-size: 12px;
        margin-top: 0px;
        margin-right: auto;
        margin-left: auto;
    .midden{
        padding-top: 5px;
        width: 330px;
        text-align: left;
        font-size: 12px;
        margin-top: 0px;
        margin-right: auto;
        margin-left: auto;   
    #footer-wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 5;
    #footer-container {
        height: 50px;
        background-image: url(../images/footer-bg.png);
        background-repeat: repeat-x;
        background-position: left bottom;
    #footer {
        width: 1040px;
        margin: 0 auto;
        position: relative;
        background: #FFF;
    #contentfooter {
        width: 1040px;
        margin-top: 0;
        margin-right: auto;
        position:relative;
        margin-bottom: 0;
        margin-left: auto;
        height:50px;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #F00;
        text-align: center;
    .leftfooter {
        float: left;
    .rightfooter {
        float: left;
    #iframe {
            height: 600px;
            min-height: 600px; }
    .result_title a:link {
        color: #00C;
        text-decoration: none;
    .result_title a:visited {
        color: #F8495A;
        text-decoration: none;
    .result_title a:hover {
        color: #00C;
        text-decoration: underline;
    .result_title a:active {
        color: #00B004;
        text-decoration: none;
    .description { font-size: 100%; color: #008000; }
    .docs {border:0;}
    .pdf {border:0;}
    .images {border:0;}
    .excell {border:0;}
    .exe {border:0;}
    .clock {
        text-align: center;
        background: #FFF;
        border: 1px solid #CCC;
        height: 20px;
        width: 175px;
        font-size: 12px;
    .clearfix {
        content:".";
        width:100%;
        height: 0;
        clear: both;
        display: block;
        visibility: hidden;
    /* Hides from IE-mac \*/
    .clearfix {height: 1%;}  /* for IE/Mac */
    CSS IE hacks
    html{
        overflow: hidden;
    body{
        overflow: auto;
    #header-wrap, #footer-wrap {
        position: absolute;
    #header-container, #footer-container,{
    margin-right: 16px;
    #ie6-container-wrap {
        position: absolute;
        width: 100%;
        height:100%;
        overflow:auto;
    #TabbedPanels1 {
        position: absolute;
    .TabbedPanels {
        position: absolute;
    #boven {
        padding-top: 100px;
    #container {
        padding-top: 60px;
        height :100%;
    #sitecontent {
        height: 100%;
    #footer-wrap {
        bottom: -1px;
    #header img, #footer img
    display: block;
    Template
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Naamloos document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../Stijlbladen/main4.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" type="text/css" href="../Stijlbladen/pro_dropdown_3.css"/>
    <script src="../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script type="text/javascript" src="../SpryAssets/SpryURLUtils.js"></script>
    <script type="text/javascript">var params = Spry.Utils.getLocationParamsAsObject(); </script>
    <link href="../SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    <script src="../Scripts/stuHover.js" type="text/javascript"></script>
    <script type="text/javascript" src="../Scripts/percentageProgressBar.js"></script>
    <script type="text/javascript" src="../Scripts/paswoord.js"></script>
    <!--[if lt IE 7 ]>
    <link href="../Stijlbladen/ie6hacks.css" rel="stylesheet" type="text/css" />
    <![endif]-->
    </head>
    <body>
    <!--ZOOMSTOP-->
    <div id="header-wrap">
        <div id="header-container">
            <div id="header">
                    <div id="header-content">
                    <table width="890" border="0" cellspacing="1">
          <tr>
            <td width="100" height="50"><a href="../Sites/Index.html"><img src="../afbeeldingen/Sitepictures/WN_OriginalImage.jpg" width="90" height="50"/></a></td>
            <td width="680">
         <span class="preload1"></span>
        <span class="preload2"></span>
            <ul id="nav">
                <li class="top"><a href="#nogo2" id="Algemeen" class="top_link"><span class="down">Algemeen</span></a>
                    <ul class="sub">
                    <li><b>Alg. Procedure</b></li>
                    <li><a href="#nogo3" class="fly">Car Policy</a>
                        <ul>
                            <li><a href="../Algemeen/CAR POLICY WN_dec2009.doc">Carpolicy NL</a></li>
                            <li><a href="../Algemeen/CAR POLICY WNdec2009FR.doc">Carpolicy FR</a></li>
                        </ul>
                    </li>
                    <li><a href="#nogo7" class="fly">Gsm Policy</a>
                        <ul>
                            <li><a href="#nogo8">Gsm Policy NL</a></li>
                            <li><a href="#nogo9">Gsm Policy FR</a></li>
                        </ul>
                    </li>
                    <li><b>Diversen</b></li>
                    <li><a href="../Algemeen/Skills.htm">Skills</a></li>
                    <li><a href="../Sites/Verlof-Recup.html">Verlof</a></li>
                    <li><a href="../Sites/Verlof-Recup.html">Recup</a></li>
            </ul>
                </li>
                <li class="top"><a href="#nogo2" id="Support" class="top_link"><span class="down">Support</span></a>
                    <ul class="sub">
                        <li><a href="../Algemeen/support/Artikellijst.xls">ArtikelLijst</a></li>
                        <li><a href="../Algemeen/support/Retail Algemeen.xls">Retail Algemeen</a></li>
                        <li><a href="../Algemeen/support/Barcodes v2-2.pdf">Barcode's ALL</a></li>
                        <li><a href="../Algemeen/support/CRM 2.2.pdf">CRM 2.2</a></li>
                        <li><a href="#nogo7" class="fly">Onkostennota</a>
                        <ul>
                            <li><a href="../Algemeen/dbourdon_1109.xls">Onkostennota NL</a></li>
                            <li><a href="../Algemeen/décompte de frais July 2009.xls">Onkostennota FR</a></li>
                        </ul>
                        </li>
                        <li><a href="#nogo7" class="fly">Online Tools</a>
                        <ul>
                            <li><a href="file://///Wincor-nixdorf/projects/BE/D34POOL/STOCK MAALBEEK/FIELD/PLOMPEN RETAIL LOC WB.xls">Stock E.Plompen</a></li>
                            <li><a href="../Sites/login.html">Online map</a></li>
                            <li><a href="../Sites/Fujitsu.html">Fujitsu Portal</a></li>
                        </ul>
                    </li>
                         <li><a href="#nogo7" class="fly">FAX Franchisé</a>
                        <ul>
                            <li><a href="../Algemeen/support/Fax franchisé NL4.doc">Franchisé NL</a></li>
                            <li><a href="../Algemeen/support/Fax franchisé FR4.doc">Franchisé FR</a></li>
                        </ul>
                        </li>
            </ul>
        </li>
        <li class="top"><a href="#nogo22" id="Contacts" class="top_link"><span class="down">Contacts</span></a>
            <ul class="sub">
                <li><a href="../Algemeen/contacts/technician.pdf">Retail Tech</a></li>
                <li><a href="../Algemeen/contacts/telretail.xls">Tel Ret/Helpdesk</a></li>
                <li><a href="../Algemeen/contacts/Telefoonlijst WN + WNS.xls">Tel WN/WNS</a></li>
            </ul>
        </li>
        <li class="top"><a href="#nogo27" id="Klanten" class="top_link"><span class="down">Klanten</span></a>
            <ul class="sub">
                <li><a href="../Sites/Aldi.html">Aldi</a></li>
                <li><a href="../Sites/Little Customers.html?tab=0#tabbedpanels1">Belgique Loisirs</a></li>
                <li><a href="../Sites/Bonita.html">Bonita</a></li>
                <li><a href="../Sites/Carrefour.html">Carrefour</a></li>
                <li><a href="../Sites/C&amp;A.html">C &amp; A</a></li>
                <li><a href="../Sites/Decathlon.html">Decathlon</a></li>
                <li><a href="../Sites/Delhaize.html">Delhaize</a></li>
                <li><a href="../Sites/Ici Paris XL.html">Ici Paris</a></li>
                <li><a href="../Sites/Ikea.html">Ikea</a></li>
                <li><a href="../Sites/Little Customers.html?tab=3#tabbedpanels1">Koodza</a></li>
                <li><a href="../Sites/Kruidvat.html">Kruidvat</a></li>
                <li><a href="../Sites/Lidl.html">Lidl</a></li>
                <li><a href="../Sites/Living Tomorrow.html">Living Tomorrow</a></li>
                <li><a href="../Sites/Mediamarkt.html">Mediamarkt</a></li>
                <li><a href="../Sites/Scapino.html">Scapino</a></li>
                <li><a href="../Sites/Little Customers.html?tab=2#tabbedpanels1">Takko</a></li>
                <li><a href="../Sites/Little Customers.html?tab=1#tabbedpanels1">Texto</a></li>
            </ul>
        </li>
        <li class="top"><a href="#nogo63" id="ThirdParty" class="top_link"><span class="down">3th Party</span></a>
            <ul class="sub">
                <li><a href="../Sites/third party.html?tab=5#tabbedpanels1">Fujitsu Siemens</a></li>
                <li><a href="../Sites/third party.html?tab=4#tabbedpanels1">HP</a></li>
                <li><a href="../Sites/third party.html?tab=6#tabbedpanels1">Datalogic</a></li>
                <li><a href="../Sites/third party.html?tab=7#tabbedpanels1">Vensafe</a></li>
                <li><a href="../Sites/third party.html?tab=1#tabbedpanels1">Scanners</a></li>
                <li><a href="../Sites/third party.html?tab=0#tabbedpanels1">Scales</a></li>
            </ul>
        </li>
        <li class="top"><a href="../Sites/Wincor-Nixdorf materiaal.html" id="WN-Material" class="top_link"><span>WN-Material</span></a></li>
        <li class="top"><a href="../Sites/Technician tools.html" id="Techtools" class="top_link"><span>Techtools</span></a></li>
    </ul>
            </td>
          </tr>
        </table>
      <table width="1038" border="0" cellspacing="1">
      <tr>
        <td><form method="get" action="../indexer/search.html">
    <input type="text" name="zoom_query" size="30" />
    <input type="submit" value="Search" />
    </form></td>
        <td> </td>
        <td><div class="clock"><script type="text/javascript" language="javascript" src="../Scripts/datetime.js">
    </script></div>
    </td>
      </tr>
    </table>
             </div>
            </div>
        </div>
    </div>
    <!--ZOOMRESTART-->
    <div id="ie6-container-wrap" >
    <div id="container">   
            <!-- TemplateBeginEditable name="EditRegion1" -->
         <div id="boven">test<br />
           <br />
         </div> 
         <div id="TabbedPanels1" class="TabbedPanels">
          <ul class="TabbedPanelsTabGroup">
            <li class="TabbedPanelsTab" tabindex="0">Algemeen</li>
            <li class="TabbedPanelsTab" tabindex="0">Tools</li>
            <li class="TabbedPanelsTab" tabindex="0">Pc's</li>
            <li class="TabbedPanelsTab" tabindex="0">Kassa's</li>
            <li class="TabbedPanelsTab" tabindex="0">Selfscanning</li>
            <li class="TabbedPanelsTab" tabindex="0">Self Check Outs</li>
            <li class="TabbedPanelsTab" tabindex="0">EN andere</li>
          </ul>
          <div class="TabbedPanelsContentGroup">
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven
                <p>Hier wordt de inhoud voor  id midden weergegeven</p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
                <p> </p>
              </div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links">Hier wordt de inhoud voor  id left weergegeven</div>
              <div class="rechts">Hier wordt de inhoud voor  id right weergegeven</div>
              <div class="midden">Hier wordt de inhoud voor  id midden weergegeven</div>
            </div>
          </div>
          <div class="clearfix:after"> </div>
    </div>
    <!-- TemplateEndEditable -->
        </div>
        <div class="clearfix:after"> </div>
      </div>
      <!--ZOOMSTOP-->
    <div id="footer-wrap">
        <div id="footer-container">
            <div id="footer">
             <div id="contentfooter"><div class="leftfooter"><a href="../Sites/Index.html"> <img src="../afbeeldingen/Sitepictures/Homebutton.gif" width="40" height="40" border="none" /></a></div>
           <div class="rightfooter"><a href="../Sites/Index.html"> <img src="../afbeeldingen/Sitepictures/mail_button.gif" border="none" /></a></div>RELEASE CANDITATE VERSIE 3 BUILD 27041002 </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    </body>
    </html>
    PAGE where i open the tabbed panels
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Naamloos-2.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Third Party</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="../Stijlbladen/main4.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" type="text/css" href="../Stijlbladen/pro_dropdown_3.css"/>
    <script src="../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script type="text/javascript" src="../SpryAssets/SpryURLUtils.js"></script>
    <script type="text/javascript">var params = Spry.Utils.getLocationParamsAsObject(); </script>
    <link href="../SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    <script src="../Scripts/stuHover.js" type="text/javascript"></script>
    <script type="text/javascript" src="../Scripts/percentageProgressBar.js"></script>
    <script type="text/javascript" src="../Scripts/paswoord.js"></script>
    <!--[if lt IE 7 ]>
    <link href="../Stijlbladen/ie6hacks.css" rel="stylesheet" type="text/css" />
    <![endif]-->
    </head>
    <body>
    <!--ZOOMSTOP-->
    <div id="header-wrap">
        <div id="header-container">
            <div id="header">
                    <div id="header-content">
                    <table width="890" border="0" cellspacing="1">
          <tr>
            <td width="100" height="50"><a href="Index.html"><img src="../afbeeldingen/Sitepictures/WN_OriginalImage.jpg" width="90" height="50"/></a></td>
            <td width="680">
         <span class="preload1"></span>
        <span class="preload2"></span>
            <ul id="nav">
                <li class="top"><a href="#nogo2" id="Algemeen" class="top_link"><span class="down">Algemeen</span></a>
                    <ul class="sub">
                    <li><b>Alg. Procedure</b></li>
                    <li><a href="#nogo3" class="fly">Car Policy</a>
                        <ul>
                            <li><a href="../Algemeen/CAR POLICY WN_dec2009.doc">Carpolicy NL</a></li>
                            <li><a href="../Algemeen/CAR POLICY WNdec2009FR.doc">Carpolicy FR</a></li>
                        </ul>
                    </li>
                    <li><a href="#nogo7" class="fly">Gsm Policy</a>
                        <ul>
                            <li><a href="#nogo8">Gsm Policy NL</a></li>
                            <li><a href="#nogo9">Gsm Policy FR</a></li>
                        </ul>
                    </li>
                    <li><b>Diversen</b></li>
                    <li><a href="../Algemeen/Skills.htm">Skills</a></li>
                    <li><a href="Verlof-Recup.html">Verlof</a></li>
                    <li><a href="Verlof-Recup.html">Recup</a></li>
            </ul>
                </li>
                <li class="top"><a href="#nogo2" id="Support" class="top_link"><span class="down">Support</span></a>
                    <ul class="sub">
                        <li><a href="../Algemeen/support/Artikellijst.xls">ArtikelLijst</a></li>
                        <li><a href="../Algemeen/support/Retail Algemeen.xls">Retail Algemeen</a></li>
                        <li><a href="../Algemeen/support/Barcodes v2-2.pdf">Barcode's ALL</a></li>
                        <li><a href="../Algemeen/support/CRM 2.2.pdf">CRM 2.2</a></li>
                        <li><a href="#nogo7" class="fly">Onkostennota</a>
                        <ul>
                            <li><a href="../Algemeen/dbourdon_1109.xls">Onkostennota NL</a></li>
                            <li><a href="../Algemeen/décompte de frais July 2009.xls">Onkostennota FR</a></li>
                        </ul>
                        </li>
                        <li><a href="#nogo7" class="fly">Online Tools</a>
                        <ul>
                            <li><a href="file://///Wincor-nixdorf/projects/BE/D34POOL/STOCK MAALBEEK/FIELD/PLOMPEN RETAIL LOC WB.xls">Stock E.Plompen</a></li>
                            <li><a href="login.html">Online map</a></li>
                            <li><a href="Fujitsu.html">Fujitsu Portal</a></li>
                        </ul>
                    </li>
                         <li><a href="#nogo7" class="fly">FAX Franchisé</a>
                        <ul>
                            <li><a href="../Algemeen/support/Fax franchisé NL4.doc">Franchisé NL</a></li>
                            <li><a href="../Algemeen/support/Fax franchisé FR4.doc">Franchisé FR</a></li>
                        </ul>
                        </li>
            </ul>
        </li>
        <li class="top"><a href="#nogo22" id="Contacts" class="top_link"><span class="down">Contacts</span></a>
            <ul class="sub">
                <li><a href="../Algemeen/contacts/technician.pdf">Retail Tech</a></li>
                <li><a href="../Algemeen/contacts/telretail.xls">Tel Ret/Helpdesk</a></li>
                <li><a href="../Algemeen/contacts/Telefoonlijst WN + WNS.xls">Tel WN/WNS</a></li>
            </ul>
        </li>
        <li class="top"><a href="#nogo27" id="Klanten" class="top_link"><span class="down">Klanten</span></a>
            <ul class="sub">
                <li><a href="Aldi.html">Aldi</a></li>
                <li><a href="Little Customers.html?tab=0#tabbedpanels1">Belgique Loisirs</a></li>
                <li><a href="Bonita.html">Bonita</a></li>
                <li><a href="Carrefour.html">Carrefour</a></li>
                <li><a href="C&amp;A.html">C &amp; A</a></li>
                <li><a href="Decathlon.html">Decathlon</a></li>
                <li><a href="Delhaize.html">Delhaize</a></li>
                <li><a href="Ici Paris XL.html">Ici Paris</a></li>
                <li><a href="Ikea.html">Ikea</a></li>
                <li><a href="Little Customers.html?tab=3#tabbedpanels1">Koodza</a></li>
                <li><a href="Kruidvat.html">Kruidvat</a></li>
                <li><a href="Lidl.html">Lidl</a></li>
                <li><a href="Living Tomorrow.html">Living Tomorrow</a></li>
                <li><a href="Mediamarkt.html">Mediamarkt</a></li>
                <li><a href="Scapino.html">Scapino</a></li>
                <li><a href="Little Customers.html?tab=2#tabbedpanels1">Takko</a></li>
                <li><a href="Little Customers.html?tab=1#tabbedpanels1">Texto</a></li>
            </ul>
        </li>
        <li class="top"><a href="#nogo63" id="ThirdParty" class="top_link"><span class="down">3th Party</span></a>
            <ul class="sub">
                <li><a href="third party.html?tab=5#tabbedpanels1">Fujitsu Siemens</a></li>
                <li><a href="third party.html?tab=4#tabbedpanels1">HP</a></li>
                <li><a href="third party.html?tab=6#tabbedpanels1">Datalogic</a></li>
                <li><a href="third party.html?tab=7#tabbedpanels1">Vensafe</a></li>
                <li><a href="third party.html?tab=1#tabbedpanels1">Scanners</a></li>
                <li><a href="third party.html?tab=0#tabbedpanels1">Scales</a></li>
            </ul>
        </li>
        <li class="top"><a href="Wincor-Nixdorf materiaal.html" id="WN-Material" class="top_link"><span>WN-Material</span></a></li>
        <li class="top"><a href="Technician tools.html" id="Techtools" class="top_link"><span>Techtools</span></a></li>
    </ul>
            </td>
          </tr>
        </table>
      <table width="1038" border="0" cellspacing="1">
      <tr>
        <td><form method="get" action="../indexer/search.html">
    <input type="text" name="zoom_query" size="30" />
    <input type="submit" value="Search" />
    </form></td>
        <td> </td>
        <td><div class="clock"><script type="text/javascript" language="javascript" src="../Scripts/datetime.js">
    </script></div>
    </td>
      </tr>
    </table>
             </div>
            </div>
        </div>
    </div>
    <!--ZOOMRESTART-->
    <div id="ie6-container-wrap" >
    <div id="container">   
            <!-- InstanceBeginEditable name="EditRegion1" -->
    <div id="boven"><img src="../afbeeldingen/Sitepictures/Datalogic_logo.jpg" alt="Datalogic" name="img2" width="100" height="100" id="img2" /> <img src="../afbeeldingen/Sitepictures/PSC-Logo4C.jpg" alt="PSC" name="img2" width="450" height="160" id="img2" /> <img src="../afbeeldingen/Sitepictures/NCRlogo.jpg" alt="NCR" name="img2" width="116" height="116" id="img2" /> <img src="../afbeeldingen/Sitepictures/symbol-logo.jpg" alt="Symbol" name="img2" width="200" height="150" id="img2" /></div>
        <div id="TabbedPanels1" class="TabbedPanels">
          <ul class="TabbedPanelsTabGroup">
            <li class="TabbedPanelsTab" tabindex="0">kassascanners</li>
            <li class="TabbedPanelsTab" tabindex="0">Handscanners</li>
            <li class="TabbedPanelsTab" tabindex="0">Scales</li>
            <li class="TabbedPanelsTab" tabindex="0">Kassaprinters</li>
            <li class="TabbedPanelsTab" tabindex="0">HP</li>
            <li class="TabbedPanelsTab" tabindex="0">Fujitsu-Siemens</li>
            <li class="TabbedPanelsTab" tabindex="0">Datalogic</li>
            <li class="TabbedPanelsTab" tabindex="0">Vensafe</li>
          </ul>
          <div class="TabbedPanelsContentGroup">
            <div class="TabbedPanelsContent">
               <div class="links"></div>
              <div class="rechts"></div>
             <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
             <div class="links"></div>
               <div class="rechts"></div>
              <div class="midden"></div>
            </div>
           <div class="TabbedPanelsContent">
              <div class="links"></div>
              <div class="rechts"></div>
              <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links"></div>
              <div class="rechts"></div>
              <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
              <div class="links"></div>
              <div class="rechts"></div>
              <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
             <div class="links"></div>
             <div class="rechts"></div>
            <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
             <div class="links"></div>
             <div class="rechts"></div>
            <div class="midden"></div>
            </div>
            <div class="TabbedPanelsContent">
             <div class="links"></div>
             <div class="rechts"></div>
            <div class="midden"></div>
            </div>
          </div>
           <div class="clearfix:after"> </div>
        </div>
    <!-- InstanceEndEditable -->
        </div>
        <div class="clearfix:after"> </div>
      </div>
      <!--ZOOMSTOP-->
    <div id="footer-wrap">
        <div id="footer-container">
            <div id="footer">
             <div id="contentfooter"><div class="leftfooter"><a href="Index.html"> <img src="../afbeeldingen/Sitepictures/Homebutton.gif" width="40" height="40" border="none" /></a></div>
           <div class="rightfooter"><a href="Index.html"> <img src="../afbeeldingen/Sitepictures/mail_button.gif" border="none" /></a></div>RELEASE CANDITATE VERSIE 3 BUILD 27041002 </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    TABBED PANELS CSS
    @charset "UTF-8";
    /* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* Horizontal Tabbed Panels
    * The default style for a TabbedPanels widget places all tab buttons
    * (left aligned) above the content panel.
    /* This is the selector for the main TabbedPanels container. For our
    * default style, this container does not contribute anything visually,
    * but it is floated left to make sure that any floating or clearing done
    * with any of its child elements are contained completely within the
    * TabbedPanels container, to minimize any impact or undesireable
    * interaction with other floated elements on the page that may be used
    * for layout.
    * If you want to constrain the width of the TabbedPanels widget, set a
    * width on the TabbedPanels container. By default, the TabbedPanels widget
    * expands horizontally to fill up available space.
    * The name of the class ("TabbedPanels") used in this selector is not
    * necessary to make the widget function. You can use any class name you
    * want to style the TabbedPanels container.
    .TabbedPanels {
        width: 1040px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
        position: static;
        float: left;
    /* This is the selector for the TabGroup. The TabGroup container houses
    * all of the tab buttons for each tabbed panel in the widget. This container
    * does not contribute anything visually to the look of the widget for our
    * default style.
    * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
    * necessary to make the widget function. You can use any class name you
    * want to style the TabGroup container.
    .TabbedPanelsTabGroup {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the TabbedPanelsTab. This container houses
    * the title for the panel. This is also the tab "button" that the user clicks
    * on to activate the corresponding content panel so that it appears on top
    * of the other tabbed panels contained in the widget.
    * For our default style, each tab is positioned relatively 1 pixel down from
    * where it wold normally render. This allows each tab to overlap the content
    * panel that renders below it. Each tab is rendered with a 1 pixel bottom
    * border that has a color that matches the top border of the current content
    * panel. This gives the appearance that the tab is being drawn behind the
    * content panel.
    * The name of the class ("TabbedPanelsTab") used in this selector is not
    * necessary to make the widget function. You can use any class name you want
    * to style this tab container.
    .TabbedPanelsTab {
        position: static;
        top: 1px;
        float: left;
        font: bold 0.7em sans-serif;
        background-color: #FF0033;
        list-style: none;
        border-left: solid 1px #CCC;
        border-bottom: solid 1px #999;
        border-top: solid 1px #999;
        border-right: solid 1px #999;
        -moz-user-select: none;
        -khtml-user-select: none;
        cursor: pointer;
        margin-top: 0px;
        margin-right: 1px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 4px;
        padding-right: 5px;
        padding-bottom: 4px;
        padding-left: 5px;
    /* This selector is an example of how to change the appearnce of a tab button
    * container as the mouse enters it. The class "TabbedPanelsTabHover" is
    * programatically added and removed from the tab element as the mouse enters
    * and exits the container.
    .TabbedPanelsTabHover {
        background-color: #75A7D0;
    /* This selector is an example of how to change the appearance of a tab button
    * container after the user has clicked on it to activate a content panel.
    * The class "TabbedPanelsTabSelected" is programatically added and removed
    * from the tab element as the user clicks on the tab button containers in
    * the widget.
    * As mentioned above, for our default style, tab buttons are positioned
    * 1 pixel down from where it would normally render. When the tab button is
    * selected, we change its bottom border to match the background color of the
    * content panel so that it looks like the tab is part of the content panel.
    .TabbedPanelsTabSelected {
        border-bottom: 2px solid #EEE;
        color: #FFF;
        background-color: #000;
    /* This selector is an example of how to make a link inside of a tab button
    * look like normal text. Users may want to use links inside of a tab button
    * so that when it gets focus, the text *inside* the tab button gets a focus
    * ring around it, instead of the focus ring around the entire tab.
    .TabbedPanelsTab a {
        color: black;
        text-decoration: none;
    /* This is the selector for the ContentGroup. The ContentGroup container houses
    * all of the content panels for each tabbed panel in the widget. For our
    * default style, this container provides the background color and borders that
    * surround the content.
    * The name of the class ("TabbedPanelsContentGroup") used in this selector is
    * not necessary to make the widget function. You can use any class name you
    * want to style the ContentGroup container.
    .TabbedPanelsContentGroup {
        clear: both;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        float: left;
    /* This is the selector for the Content panel. The Content panel holds the
    * content for a single tabbed panel. For our default style, this container
    * provides some padding, so that the content is not pushed up against the
    * widget borders.
    * The name of the class ("TabbedPanelsContent") used in this selector is
    * not necessary to make the widget function. You can use any class name you
    * want to style the Content container.
    .TabbedPanelsContent {
        padding: 4px;
        height: 100%;
        width: 1032px;
        float: left;
    /* This selector is an example of how to change the appearnce of the currently
    * active container panel. The class "TabbedPanelsContentVisible" is
    * programatically added and removed from the content element as the panel
    * is activated/deactivated.
    .TabbedPanelsContentVisible {
        background-color: #FFF;
    /* Vertical Tabbed Panels
    * The following rules override some of the default rules above so that the
    * TabbedPanels widget renders with its tab buttons along the left side of
    * the currently active content panel.
    * With the rules defined below, the only change that will have to be made
    * to switch a horizontal tabbed panels widget to a vertical tabbed panels
    * widget, is to use the "VTabbedPanels" class on the top-level widget
    * container element, instead of "TabbedPanels".
    /* This selector floats the TabGroup so that the tab buttons it contains
    * render to the left of the active content panel. A border is drawn around
    * the group container to make it look like a list container.
    .VTabbedPanels .TabbedPanelsTabGroup {
        float: left;
        width: 10em;
        height: 20em;
        background-color: #CCC;
        position: relative;
        border-top: solid 1px #999;
        border-right: solid 1px #999;
        border-left: solid 1px #CCC;
        border-bottom: solid 1px #CCC;
    /* This selector disables the float property that is placed on each tab button
    * by the default TabbedPanelsTab selector rule above. It also draws a bottom
    * border for the tab. The tab button will get its left and right border from
    * the TabGroup, and its top border from the TabGroup or tab button above it.
    .VTabbedPanels .TabbedPanelsTab {
        float: none;
        margin: 0px;
        border-top: none;
        border-left: none;
        border-right: none;
    /* This selector disables the float property that is placed on each tab button
    * by the default TabbedPanelsTab selector rule above. It also draws a bottom
    * border for the tab. The tab button will get its left and right border from
    * the TabGroup, and its top border from the TabGroup or tab button above it.
    .VTabbedPanels .TabbedPanelsTabSelected {
        background-color: #EEE;
        border-bottom: solid 1px #999;
    /* This selector floats the content panels for the widget so that they
    * render to the right of the tabbed buttons.
    .VTabbedPanels .TabbedPanelsContentGroup {
        clear: none;
        float: left;
        padding: 0px;
        width: 30em;
        height: 20em;

    added also the css for the menubar
    pro_dropdown_3.css
    .preload1 {
        background-image: url(../afbeeldingen/Sitepictures/three_0a.gif);
    .preload2 {
        background-image: url(../afbeeldingen/Sitepictures/three_1a.gif);
    #nav {
        padding:0;
        margin:0;
        list-style:none;
        height:38px;
        position:relative;
        z-index:500;
        font-family:arial, verdana, sans-serif;
        background-image: url(../afbeeldingen/Sitepictures/three_0.gif);
        background-repeat: repeat-x;
    #nav li.top {
        display:block;
        float:left;
        width: auto;
    #nav li a.top_link {
        display:block;
        float:left;
        height:35px;
        line-height:33px;
        color:#ccc;
        text-decoration:none;
        font-size:11px;
        font-weight:bold;
        cursor:pointer;
        background-image: url(../afbeeldingen/Sitepictures/three_0.gif);
        width: 85px;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 2px;
    #nav li a.top_link span {
        float:left;
        display:block;
        height:35px;
        background-image: url(../afbeeldingen/Sitepictures/three_0.gif);
        background-repeat: no-repeat;
        background-position: right top;
        width: 70px;
        padding-top: 0;
        padding-right: 10px;
        padding-bottom: 0;
        padding-left: 10px;
    #nav li a.top_link span.down {
        float:left;
        display:block;
        padding:0 10px 0 12px;
        height:35px;
        background-image: url(../afbeeldingen/Sitepictures/three_0a.gif);
        background-repeat: no-repeat;
        background-position: right top;
    #nav li:hover a.top_link {
        color:#fff;
        background-image: url(../afbeeldingen/Sitepictures/three_1.gif);
        background-repeat: no-repeat;
    #nav li:hover a.top_link span {
        background-image: url(../afbeeldingen/Sitepictures/three_1.gif);
        background-repeat: no-repeat;
        background-position: right top;
    #nav li:hover a.top_link span.down {
        padding-bottom:3px;
        background-image: url(../afbeeldingen/Sitepictures/three_1a.gif);
        background-repeat: no-repeat;
        background-position: right top;
    /* Default list styling */
    #nav li:hover {position:relative; z-index:200;}
    #nav li:hover ul.sub
    {left:1px; top:38px; background: #50b5d0; padding:3px; border:1px solid #0b4d97; white-space:nowrap; width:90px; height:auto; z-index:300;}
    #nav li:hover ul.sub li
    {display:block; height:20px; position:relative; float:left; width:90px; font-weight:normal;}
    #nav li:hover ul.sub li a
    {display:block; font-size:11px; height:18px; width:88px; line-height:18px; text-indent:5px; color:#000; text-decoration:none;border:1px solid #50b5d0;}
    #nav li ul.sub li a.fly
        background-color: #50b5d0;
        background-image: url(../afbeeldingen/Sitepictures/arrow.gif);
        background-repeat: no-repeat;
        background-position: 80px 6px;
    #nav li:hover ul.sub li a:hover
    {background:#3f96a9; color:#fff; border-color:#fff;}
    #nav li:hover ul.sub li a.fly:hover
        color:#fff;
        background-color: #3f96a9;
        background-image: url(../afbeeldingen/Sitepictures/arrow_over.gif);
        background-repeat: no-repeat;
        background-position: 80px 6px;
    #nav li b {display:block; font-size:11px; height:18px; width:88px; line-height:18px; margin-bottom:3px; text-indent:6px; color:#ff6; border-bottom:1px solid #ff6; cursor:default;}
    #nav li:hover li:hover ul,
    #nav li:hover li:hover li:hover ul,
    #nav li:hover li:hover li:hover li:hover ul,
    #nav li:hover li:hover li:hover li:hover li:hover ul
    {left:90px; top:-4px; background: #50b5d0; padding:3px; border:1px solid #0b4d97; white-space:nowrap; width:90px; z-index:400; height:auto;}
    #nav ul,
    #nav li:hover ul ul,
    #nav li:hover li:hover ul ul,
    #nav li:hover li:hover li:hover ul ul,
    #nav li:hover li:hover li:hover li:hover ul ul
    {position:absolute; left:-9999px; top:-9999px; width:0; height:0; margin:0; padding:0; list-style:none;}
    #nav li:hover li:hover a.fly,
    #nav li:hover li:hover li:hover a.fly,
    #nav li:hover li:hover li:hover li:hover a.fly,
    #nav li:hover li:hover li:hover li:hover li:hover a.fly
        color:#fff;
        border-color:#fff;
        background-color: #3f96a9;
        background-image: url(../afbeeldingen/Sitepictures/arrow_over.gif);
        background-repeat: no-repeat;
        background-position: 80px 6px;
    #nav li:hover li:hover li a.fly,
    #nav li:hover li:hover li:hover li a.fly,
    #nav li:hover li:hover li:hover li:hover li a.fly
        color:#000;
        border-color:#50b5d0;
        background-color: #50b5d0;
        background-image: url(../afbeeldingen/Sitepictures/arrow.gif);
        background-repeat: no-repeat;
        background-position: 80px 6px;

  • Java Applets font rendering with no AA

    So I've exhausted all possibilities on my end here and have no idea how to get anti aliasing to work with java applets. I've followed all of the suggestions from the wiki entry for the subject here:
    https://wiki.archlinux.org/index.php/Ja … ment_Fonts
    I've attached a screenshot of a few browsers and the appletviewer running a script from a book I am following at the moment. It's consistent, but it's an itch I haven't been able to scratch. OCD at it's finest here. It doesn't halt production or anything, but it bugs me.
    Thanks for any help offered!
    http://cigii.com/javajunk.png
    Moderator Edit:  Redacted in-line picture and converted it to a url link
    Last edited by ewaller (2011-12-01 04:13:44)

    transmutated:
    The picture in your original post was well beyond the size permitted by our policy.  If you would like to include a thumbnail picture, go ahead and edit that post with image tags that point to the thumbnail inside the url tags.  Have the url tags point at the big picture.  That way your readers can see the thumbnail and click through it to see the full image.
    Thanks

  • Java Console Launch Problems with CITRIX

    I have to use a Citrix TerminalServer to connect to the SunMC Server.
    Reason is the nature of the RMI proto. RMI needs to open ports back on
    the console host. As this is not allowed in our network design, I first login to
    a CITIX T.S. , start a browser and then type the URL of the SunMC server.
    The page appeares, I select "Launch Java Console", then "Open with Java Web Start executable" and it starts Java 5. Now I would expect the Login Window, but instead of it I get a window saying:
    Checking for latest version ...
    After a while (timeout) I get:
    Unable to lauch Sun Management center
    Any ideas ?

    We opened a case at SUN and got the following statement:
    This is a know issue and actually the problem has been escalated to our developer colleagues: Bug 6665331
    Using java web start does not work on a firewalled environment. This is both on a windows as well as a solaris environment. So anyone who has enabled firewalled communication will be facing this issue. The momentarily workarounds you can apply are:
    - install the console directly on the window pc or Soalris environment and use the Java GUI or
    - set the variable "sunmc.server.console.firewall.Enable=false" into java.properties file.
    --> we installed the regular (non-Web-Start) Java Console on the Citrix host. It uses the configured ports, e.g. 45000-48000. and works fine.
    I think, this will also be needed on a normal windows (non-Citrix) host.
    The second suggested workaround did not show any effects.
    Conclusion: If there is a firewall in between the server and the console, the Java WebStart Console can not be used at the moment.

  • Java update causes problems with color printing in Mac 10.5

    Had a big problem with color printing for the last two weeks. Thought the printer was broken because it would freeze and refuse to be "seen", or would generate error messages. Bought new Samsung 315, and had the SAME problem. Bought new HP CP1518ni, and had the SAME problem. Not resolved after talking to tech support at both places.
    Looked for software updates around the time of the onset of printing problems. on May 15 installed "Java for Mac OS X 10.5 update" (1.0) (am running on 10.5.8). Removed the Java preferences files (com.apple.java......plist) and restarted.
    Problem solved! Clearly not the printer.

    Hmmm. This is about the time my printer stopped printing too. I've now had two printers in my house and had trouble with both of them. What a pain we should not have to delete updates for our stuff to work together.
    Renee

  • Problems with CardLayout

    Does anyone know how/if I should be overriding getLayoutAlignmentX (of LayoutManager2) in order to get the cards (panels) in my CardLayout to appear somewhere other than centred in the panel.
    My problem is that I don't seem to be able to alter the layout such that when the card is switched in it appears at the left of the panel in which it is contained.

    Overriding the layout manager should never be your first step.
    All a CardLayout does is make one of its contained panels visible. The layout manager may resize the panel, in which case it's the panel's own layout manager that's centering the content.
    The easiest (but ugliest) solution is simply to put another panel in the hierarchy, using FlowLayout. Something like this (uncompiled, untested):
        JPanel myCardPanel = new JPanel(new CardLayout());
        JPanel holder = new JPanel(new FlowLayout(FlowLayout.LEADING)));
        JPanel myRealPanel = // however you get it
        holder.add(myRealPanel);
        myCardPanel.add(holder,  "Top");As I said, this is a really hackish solution. A better solution is to arrange the layout on your real panel so that it can expand without changing the position of its components. Or lock its maximum size ot its preferred size.

  • Applet loading problem with Weblogic 10.3

    Hello,
    we are trying to run a java applet (compiiled with JDK1.6.0.14) with the latest weblogic (11g or 10.3) and we get the following error:
    The applet works with Safari and the old version firefox. But IE and the latest firefox return the following error:
    java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file FirstApplet
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file FirstApplet
    I appreciate any help and suggestions in advance.
    Best,

    I found the answer to this. The documentation is not clear enough, LD_LIBRARY_PATH MUST be set and MUST have a pointer to the directory where the SSL .so modules are. I wrote up a blog article explaining the configuration and detailed this issue.
    http://blogs.oracle.com/irm/2010/06/quick_guide_to_oracle_irm_11g_1.html

  • Java card plugin problem with NetBeans 6.8

    Hi, I've got a problem with the netBeans 6.8 i couldn't add a java card plugin at all. I try to run it with the netBeans 6.7.1 and it installs the plugin and adds the java card platform, but when i try to build a sample project I've got an error:
    java.lang.NoClassDefFoundError: ${javacard/packagerClass}
    Any ideas
    Netbeans versions: 6.7.1, 6.8
    JavaCard version: JCDK3.0.2_ConnectedEdition
    OS: WindowsXP

    first idea of all: isn't there a netbeans support forum/mailing list/plugin page ?
    regards
    sebastien

  • JAI(Java Advanced Imaging) Problem with splitting TIFF images

    Hi
    I am getting problem with height when I use this program to split TIFF images
    ImageDecoder decImage = ImageCodec.createImageDecoder("tiff", inStr,
    null);
    Then it creates RenderedImage page by page and encodes them to file:
    String outFileName = "";
    OutputStream outStr;
    TIFFEncodeParam encParam = new TIFFEncodeParam();
    encParam.setCompression(TIFFEncodeParam.COMPRESSION_PACKBITS);
    for (int i=0,n=this.getPageCount(); i < n; i++)
    outImage = this.decImage.decodeAsRenderedImage(i);
    outFileName = "C:\\Temp\\Split" + i + ".tif";
    outStr = new FileOutputStream(outFileName);
    BufferedOutputStream bOutStr = new BufferedOutputStream(outStr);
    encImage = ImageCodec.createImageEncoder("tiff",bOutStr,encParam);
    encImage.encode(outImage);
    bOutStr.flush();
    bOutStr.close();
    }The images are shrinking when I split . I need a solution to this problem.
    Thanks for any help in advance
    Sudheer.

    Hi
    Did you get a solution for your problem. I am also trying to split a TIFF file.
    Thanks in advance
    Antony

  • 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.

Maybe you are looking for

  • Lightning to 30-pin adapter doesn't work w/ iPod Touch 5G

    Hi. The lightning to 30-pin adapter I purchased (from Apple) with my iPhone 5 does not work with my daughter's new iPod Touch 5G. Has anyone else experienced this issue? Thanks.

  • Can't get my iPod to connect to my iTunes

    Received the new iPod for Xmas, my brother inlaw go one to. To cut a long story short - I copied his iTunes to my iPod about 1500 songs. Now I am home and installed iTunes onto my PC copied my CDs to iTunes about 2500 songs. However when I connect th

  • Display Report Output in Email Body (EBS).

    Hi, I was wondering if it is possible to display the output of a BIP report within the body of an email using bursting instead of having the report in an attachment. Thanks in advance Carl

  • Itunes crashes when browsing films!

    Hello, I have a problem when browsing films in iTunes it always crashes now and gives me this error report . Exception: EXCBADACCESS (0x0001) Codes: KERNINVALIDADDRESS (0x0001) at 0x54424032 Thread 0 Crashed: 0 QuickTimeH264.altivec 0x996a9bd8 JVTCom

  • Simple http proxy

    What I'm trying to do is write an http proxy. It should resend client's requests unaltered to the designated http server (Host parameter in the request) , then stream the content back to the client. For certain responses (text/html) I'll need to alte