Photoshop application error Unknown

Hello everybody
I hope someone can help me here because it's a week that I try to find a solution. So in our company we upgraded the version of CS from 3 to 6 for six users.
No one has problem except a user. Very often and without a particular logic photoshop crash. The error in the event viewer is always this:
Application Failure  photoshop.exe 13.0.1.0 in unknown 0.0.0.0 at offset 0x012e9e6.
I Uninstalled the old versione from Add/Remove programs, I did the last updates, I deleted the Adobe Photoshop X Prefs.psp file and I recreated it correctly.
I think there is an external program/service/component that cause problems with the new version but I don't know how to find it.
Info about the PC:
HP Compaq xw4100 Workstation
Intel Pentium 4 2.80GHz
2Gb RAM
250Gb HDD
Nvidia Quadro4 380XGL
Thanks

Thanks for the answears and good Monday.
No, the problem is still here. Today in the Event Viewer there's another error immediately after the original:
Type event:
Error
Source:
Application Error
Category:
Nessuno
ID event:
1001
Date:
28/09/2012
Time:
14.54.18
User:
N/D
Computer:
WKSXXX
Description:
Bucket -1548073178 errato.For further information, ....
http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 42 75 63 6b 65 74 3a 20   Bucket:
0008: 2d 31 35 34 38 30 37 33   -1548073
0010: 31 37 38 0d 0a            178..  
@Bill Hunt I checked the Event viewer System Tab and the only errors are when power on the PC:
1. Adfs service can't start:Impossible find the specified file.This I don't know what it is.
2. Google Update service can't start: Impossible find the specified file. I removed the software.
Warnings:
1.Event: 20 Source: Print Description:The driver of a network printer (HP LJ P3005)for Windows NT x86 Version-3 was add or updated.
2. Event: 4226 Source: Tcpip Description:TCP/IP has reached the security limit imposed on the number of concurrent (incomplete) TCP connect attempts.
In the Application Tab there's no warnings or errors.
Any other ideas?

Similar Messages

  • DSCC: application error - unknown error (NPE)

    HI,
    just trying to test DSEE 7. However, as soon as I have setup the DS, almost every task in the DSCC web app gets an unknown application error (as long as DS was not active everything was fine - empty).
    Actually I don't know, what should be wrong: 'bin/dsadm info' and 'bin/dsccsetup status' look ok, connecting to the ldap servers with Apache Directory Studio (ports 389 and 3998) is also ok.
    So webapp bug or did I something wrong?
    Here is my proto install sheet, i.e. what I did:
    # http://docs.sun.com/app/docs/doc/820-4807/install-dsee?a=view
    setenv SRCDIR /local/scratch/downloads/sun
    setenv LC_CTYPE en_US.ISO8859-15
    # for testing we put the admin GUI stuff on the server as well
    setenv adminhost localhost
    setenv serverhost localhost
    # + is actually a link to /usr/bin/pfexec (for lazy admins and tribute to
    #   Tom Pritlove's root tool aka + ;-))
    # DS EE 7 software "installieren"  - ca. 300M
    mkdir /var/tmp/x ; cd /var/tmp/x
    gtar xzf $SRCDIR/DSEE/DSEE.7.0.Solaris10-X86-zip.tar.gz
    + mkdir /opt/dsee7 ; + chown dsadm:staff /opt/dsee7
    unzip -qq DSEE_ZIP_Distribution/sun-dsee7.zip -d /opt
    cp -p DSEE_ZIP_Distribution/idsktune /opt/dsee7/bin/
    cd /opt/dsee7/
    rm -rf /var/tmp/x
    # no need for an old JRE - ca. 134M
    rm -rf jre
    ln -s /usr/jdk/instances/jdk1.6.0/jre
    # system tuning - should be run in the global zone and adjustments made
    + bin/idsktune >/var/tmp/dsee7-tuning-tips.txt
    # optional: DS ControlCenter (DSCC) setup
    # create var/dscc7.war file to be deployed later on the WebAppServer@$adminhost
    bin/dsccsetup war-file-create
    # configure Common Agent Container (cacao) for and register DSCC Agent
    # DEFAULT: $serverhost:11162
    bin/dsccsetup cacao-reg
    # Create DSCC registry (DS instance for DSCC to store config data)
    # NOTE: password must have at least 8 characters, otherwise:
    #       /opt/dsee7/bin/dsadm exited with unexpected error code 11
    # DEFAULT: $serverhost:3998 (ldap) , $serverhost:3999 (ldaps), DN suffix:cn=dscc
    bin/dsccsetup ads-create
    # check status (whether DSCC has been registered with cacao)
    bin/dsccsetup status
        # Install Glassfish v3 (GF) or Sun GlassFish Enterprise Server (GF-ES),
        # on your $adminhost, if not already done (GFv2 and Sun Java System
        # Application Server (SJSAS) 9.x should be ok as well):
        + mkdir /opt/glassfishv3 ; + chown dsadm:staff /opt/glassfishv3
        # for reproduceable result we use no GUI but an answer file
        cat>/tmp/answer<<EOF
            License.license.ACCEPT_LICENSE=0
            InstallHome.directory.INSTALL_HOME=/opt/glassfishv3
            glassfish.Administration.HTTP_PORT=8080
            glassfish.Administration.ADMIN_PORT=4848
            glassfish.Administration.ADMIN_USER=admin
            glassfish.Administration.ADMIN_PASSWORD=12345678
            updatetool.Configuration.ALLOW_UPDATE_CHECK=true
            updatetool.Configuration.BOOTSTRAP_UPDATETOOL=true
            JDKSelection.directory.JDK_TYPED_IN_CHOICE=true
            JDKSelection.directory.JDK_TYPE_IN=/usr/jdk/instances/jdk1.6.0
    EOF
        # adjust /tmp/answer for your needs (e.g. password), than
        sh $SRCDIR/GF-ESv3/sges-v3-unix.sh -s -a /tmp/answer
        rm /tmp/answer
        # create an app server instance if you have none yet or want a separate one
        + mkdir -p /var/data/glassfishv3 ; + chown dsadm:staff /var/data/glassfishv3
        /opt/glassfishv3/bin/asadmin create-domain \
            --domaindir /var/data/glassfishv3 \
            --portbase 9000 --user admin dscc7
        cat>>/var/data/glassfishv3/dscc7/config/server.policy<<EOF
    // Permissions for Directory Service Control Center (DSCC 7)
    grant codeBase
        "file:\${com.sun.aas.instanceRoot}/applications/j2ee-modules/dscc7/-"
        permission java.security.AllPermission;
    EOF
        # start the app server
        /opt/glassfishv3/bin/asadmin start-domain \
            --domaindir /var/data/glassfishv3 \
            --user admin dscc7
        # login to the admin web console and register your AppServer
        http://$adminhost:9048/
        # deploy the dscc web app archive via web console or hotdeploy and check
        cp var/dscc7.war /var/data/glassfishv3/dscc7/autodeploy/
        http://$adminhost:9080/dscc7
    # DS setup on $serverhost
    + mkdir -p /var/data/ds ; + chown dsadm:staff /var/data/ds
    bin/dsadm create -p 389 -P 636 /var/data/ds/dsee7
        # dsadm's priviliges default to 'basic'
    + ppriv -s EI+net_privaddr bin/dsadm start /var/data/ds/dsee7
    bin/dsadm info --all --separator = /var/data/ds/dsee7
        # create an empty prefix - as defined above - e.g. 12345678
    bin/dsconf create-suffix -p 389 -e dc=example,dc=com
        # register server instance with DSCC web app on dscc-host=localhost and
        # dscc-registry-port=3998 (see 'bin/dsccsetup status')
    bin/dsccreg add-server -h $serverhost -p 3998 /var/data/ds/dsee7
    # NOTE: To see it immediately in the DSCC, one may need to restart the
    #       DSCC web app instance on the $adminhost
    # Check with eclipse Apache LDAP-Browser plugin
    # update-site to add in eclipse: http://directory.apache.org/studio/update/1.x/
    Menu: Window | Open Perspective | Other | LDAP
    # DS
    Connection Tab: New Connection
            Network-Parameters:
                Connection Name: DSEE 7
                Hostname: $servername
                Port: 389
                Encryption Method: none
            Authentification:
                Authentification Method: simple authentication
                Bind DN or User: cn=Directory Manager
                Bind Password: 12345678
    # DS Registry
    Connection Tab: New Connection
            Network-Parameters:
                Connection Name: DSEE 7 Registry
                Hostname: $servername
                Port: 3998
                Encryption Method: none
            Authentification:
                Authentification Method: simple authentication
                Bind DN or User: cn=Directory Manager
                Bind Password: 12345678Exception for the 'Directory Server' tab e.g.
    java.lang.NullPointerException
         com.sun.web.admin.directory.dcc.GlobalViewBean.getServerGroups(GlobalViewBean.java:543)
         com.sun.web.admin.directory.dcc.ServersViewBean.createTableFilters(ServersViewBean.java:297)
         com.sun.web.admin.directory.dcc.DirectoryServersViewBean.createTableModel(DirectoryServersViewBean.java:120)
         com.sun.web.admin.directory.dcc.DirectoryServersViewBean.getTableModel(DirectoryServersViewBean.java:99)
         com.sun.web.admin.directory.dcc.GlobalViewBean.registerChildren(GlobalViewBean.java:289)
         com.sun.web.admin.directory.dcc.ServersViewBean.registerChildren(ServersViewBean.java:341)
         com.sun.web.admin.directory.dcc.GlobalViewBean.(GlobalViewBean.java:128)
         com.sun.web.admin.directory.dcc.ServersViewBean.(ServersViewBean.java:42)
    ...Any ideas?
    Thanx,
    jel.

    Thanks for the answears and good Monday.
    No, the problem is still here. Today in the Event Viewer there's another error immediately after the original:
    Type event:
    Error
    Source:
    Application Error
    Category:
    Nessuno
    ID event:
    1001
    Date:
    28/09/2012
    Time:
    14.54.18
    User:
    N/D
    Computer:
    WKSXXX
    Description:
    Bucket -1548073178 errato.For further information, ....
    http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 42 75 63 6b 65 74 3a 20   Bucket:
    0008: 2d 31 35 34 38 30 37 33   -1548073
    0010: 31 37 38 0d 0a            178..  
    @Bill Hunt I checked the Event viewer System Tab and the only errors are when power on the PC:
    1. Adfs service can't start:Impossible find the specified file.This I don't know what it is.
    2. Google Update service can't start: Impossible find the specified file. I removed the software.
    Warnings:
    1.Event: 20 Source: Print Description:The driver of a network printer (HP LJ P3005)for Windows NT x86 Version-3 was add or updated.
    2. Event: 4226 Source: Tcpip Description:TCP/IP has reached the security limit imposed on the number of concurrent (incomplete) TCP connect attempts.
    In the Application Tab there's no warnings or errors.
    Any other ideas?

  • Photoshop Application Errors when printing to Zebra Card Printer

    Hello,
    I have been troubleshooting and issue for a user and I have run into a wall.
    When printing from Photoshop CS3(Version 10.0.1) to a brand new Zebra ZXP Series 3 card printer in Windows 7 32 bit I am getting this: errors:
    I went from an XP machine to Windows 7(with a video card plenty of memory) and still the same errors.  I updated the Zebra printer drivers and firmware. I can test print from the PC just fine. I even tried CS4 with the same result. The user purchased a license for CS3 so I am troubleshooting with CS3 at this moment. My user is way behind in printing id badges for his Fireman and needs this resolved ASAP. I may have to go with Zebra's Card Studio Software if there is no resolution for this Photoshop issue.
    Any help at this point would be greatly appreciated!
    Thank you,
    Ben Collier

    Zebra Level 2 Support is looking into it for me. Thanks for nothing Adobe!

  • Photoshop application error

    Hello,
    I am getting error that is described in the attached file. After i click on "OK" application will terminate.
    Kind Regards,
    Martin

    Basically it says that instruction on address xxxxx is referencing on the address xxxx. It cannot proceed the operation: read.
    By clicking on button OK i will close the application
    If i want to debug it i should click on "storno" (but it will close anyway)

  • The application, C:\Program Files\Adobe\Adobe Photoshop CS2\Photoshop.exe, generated an application error The error occurred on 10/01/2009 @ 11:31:59.964 The exception generated was c0000005 at address 7C81BD02 (ntdll!ExpInterlockedPopEntrySListFault)

    Hi,
    I get this error randomly when i run my VB 6.0 application which calls Photoshop CS2 actions. I went through many forums, but could not manage to get the right solution for this.
    "The application, C:\Program Files\Adobe\Adobe Photoshop CS2\Photoshop.exe, generated an application error The error occurred on 10/01/2009 @ 11:31:59.964 The exception generated was c0000005 at address 7C81BD02 (ntdll!ExpInterlockedPopEntrySListFault)
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp."
    OS: WIndows Server 2003 SP2
    Photoshop CS2
    ANy help on this will be highly appreciated.
    Thanks in advance,
    Smiley

    I see this sort of error notice in Bridge and Photoshop, preceded by the message " Photoshop (or Bridge) has encountered a problem and must close. Tell MS.
    Yes or No."
    It most frequently happens in PS when running Dfine 2.0. I have no clue what triggers the Bridge closure. It happens randomly.
    CS3, so nobody gives a tinkers dam, I suppose.
    I see this kind of message in software testing on a regular basis. Of course, when the test is under way, the software is generating a detailed log file which we package up as part of a bug report. Then at the bug scrubs, lively discussions ensue as to who has to fix what!
    I can only image what would happen if the Dfine people and the PS people had to sit through one of those!

  • Photoshop Service Application Error

    I just installed Premere Elements 9.  When I open Organizer in the Premere Elements welcome screen I get the message
    Font Capture: Photoshop Service.exe Application Error
    The instruction at "0x103e8453" referenced memory at "0x0000a74".  The memory could not be "read".  Click on OK to terminate the program.
    Since I had no other choice I clicked on OK.
    In the past I have hade a problem with Elements Organizer - Each time I opened Organizer the region/county box appeared.  Now, Organizer no longer requests the region / country when I opened it. 
    Can any one tell me what all this means and should I be concerned about the Photoshop Service.exe application error?

    I'd recommend you contact Adobe Tech Support with this one. It's not a typical issue by any means!

  • Photoshop CS4 - Application Error

    I just installed the CS4 Creative Suite 4. Everytime i try to launch photoshop cs4 i recieve an "Photoshop.exe Application Error." This error refferences 0x6963561b and that memory cannot be read at 0x0000008c. Can anyone please help me with this?? I have not even been able to use photoshop yet. I have already tried uninstalling and reinstalling the suite and I get the same results... Please help.
    Thanks for your time and help with this matter.
    R

    You don't have the correct secrutiy privileges:
    You have to install PS as Admin on Vista/Windows 7. When you first install the software don't run it. Go to your DVD drive and explore. Look for the PS folder and find the .exe install file. Right click on this and choose run as Admin. (there is a difference between being a admin on a computer and installing software in the Admin mode)
    So when you first start PS in Vista/Windows 7 you have to run the software in Admin mode to get all the privileges.
    Right click on the PS icon, choose properties, compatibility tab and then check Run this program as an administrator. Click Apply then OK to close. Then restart PS.
    Don't forget to update PS CS4 to 11.01.

  • Photoshop.exe Application Error

    Open image in CS4, after a couple of minutes a dialog box opens, Photoshop.exe - Application Error, how to fix please?

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Photoshop CS4 Application Errors & more

    Hi, can anyone help. I have had numerous application errors which result in the PS CS4 shutting down unexpectedly. 1 such error message: "The exception unknown software exception (0xc000000d) occurred in the application 0x78138a8c". It happens repeatedly when I try and create Brushes, when I open normal jpg files, when I create new file. There seems to be no direct correlation between an action and a crash. (I have worked on CS2 with nothing like this ever happening.) Thanks in anticipation.

    Sonjapurdon wrote:
    Hi, can anyone help. I have had numerous application errors which result in the PS CS4 shutting down unexpectedly. 1 such error message: "The exception unknown software exception (0xc000000d) occurred in the application 0x78138a8c". It happens repeatedly when I try and create Brushes, when I open normal jpg files, when I create new file. There seems to be no direct correlation between an action and a crash. (I have worked on CS2 with nothing like this ever happening.) Thanks in anticipation.
    Always use a search engine to search the verbatim text of an error. Often that yeilds a clue. For yours read this to see if it applies to your issue. Time for research on your part.   HTH.

  • Deployment Tool Error - unknown document type - Add to Application EJB jar

    I am creating a new application in the J2EE deployment tool and adding an EJB JAR to it. The jar contains the ejb-jar.xml file. This file has the standard doctype:
    <!DOCTYPE ejb-jar PUBLIC
    '-//Sun Microsystems, INC.//DTD Enterprise JavaBeans 1.1//EN'
    'file:/C:/j2sdkee1.3/lib/dtds/ejb-jar_2_0.dtd'>
    I get the Unknown Document Type error when I try to add this jar to the application:
    Error: Adding EJB JAR - java.lang.RuntimeException: Invalid XML : Unknown document type : org.apache.crimson.tree.Doctype@e8647
    The xml file validates fine in NetBeans 3.4. I use NetBeans to generate the jar file.
    Any ideas as to what is happening would be appreciated.

    Try replacing the DTD definition as specified below.
    http://java.sun.com/dtd/ejb-jar_2_0.dtd
    regards,
    Siddique

  • Moved Photoshop Application to my Desktop for easy access and now recieving an error message, help?

    Installed CS6 Design and Web Premium, then moved Photoshop Application to my Desktop from Program Files for easy access and now recieving an error message, saying application is unable to start correctly. Can anyone help me troubleshoot this please?

    Move the application back where it belongs, with all it's support files.
    You can make a SHORTCUT to the application, and place it on the desktop if you wish.

  • My photoshop application showing the error Your Product licence has expired

    My photoshop application showing the error Your Product licence has expired

    Without more details, sounds like you need to call Customer Support.

  • 'Unable to Launch Application Error' - Java Web Start Running Under MS IIS.

    I am attempting to render the following .jnlp in MS IE:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for LottoMadness Application -->
    <jnlp
       codebase="http://localhost/LottoMadness/"
       href="LottoMadness.jnlp">
       <information>
         <title>LottoMadness Application</title>
         <vendor>Rogers Cadenhead</vendor>
         <homepage href="http://localhost/LottoMadness/"/>
         <icon href="lottobigicon.gif"/>
       </information>
       <resources>
         <j2se version="1.5"/>
         <jar href="LottoMadness.jar"/>
       </resources>
       <application-desc main-class="LottoMadness"/>
    </jnlp>I've deployed the .jnlp, .gif, and .jar to MS IIS, running locally on my PC.
    When I attempt to render the .jnlp in IE I obtain an 'Application Error' window stating 'Unable to Launch Application'. Clicking details gives me:
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost/LottoMadness/LottoMadness.jnlp
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)I have configured MS IIS for Web Start, by setting the Extension/Content Type fields to .jnlp and application/x-java-jnlp-file.
    (The .jnlp is basically from 'Programming with Java in 24 Hours', as this is the book I am learning Java from.)

    AndrewThompson64 wrote:
    I am not used to seeing references to a local server that do not include a port number.
    E.G. http://localhost:8080/LottoMadness/
    I have deployed the following HTML (HelpMe.html) to the web server:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
         <title>Untitled</title>
    </head>
    <body>
    Help Me!
    </body>
    </html>When I attempt to render the URL in IE, I see the page just fine. The URL is use is:
    http://localhost/LottoMadness/HelpMe.htmlSo, I think my web server setup and usage is ok.
    >
    As an aside, what happens if (your MS IIS is running and) you click a direct link to..
    [http://localhost/LottoMadness/LottoMadness.jnlp|http://localhost/LottoMadness/LottoMadness.jnlp]
    When I click this link I get the error and exception I cited in my previous post.

  • Application Error: Unable to launch application

    Hi guys,
    My name is Jay Sun and I am new this this Forums.  I am told by my professor to migrate from this Java application to Java Web Start.
    I read all about it but I'm still struggling.  I have an example program called Traffic Light.  From the TrafficLight class,
    I created a .jar file from .java file.  The jar file runs perfectly fine and I created a .jnlp file using this.<?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="file:///C:/Documents and Settings/HP_Administrator/Desktop/TrafficLight" href="TrafficLight.jnlp">
    <information>
    <title>Traffic Light</title>
    <vendor>Java Developer Connection</vendor>
    <homepage href="/jdc" />
    <description>Demonstration of JNLP</description>
    </information>
    <offline-allowed/>
    <resources>
    <j2se version="1.6+" />
    <jar href="TraffcLight.jar"/>
    </resources>
    <application-desc main-class="Traffic Light" />
    </jnlp>That's my .jnlp file.
    My .java file is below it.import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class TrafficLightFrame extends JFrame {
    // These are the window's components
    private JRadioButton[] buttons = new JRadioButton[3];
    private JButton advButton;
    private JProgressBar progressBar;
    private JSlider slider;
    private JComboBox actionList;
    private JCheckBox autoButton;
    public TrafficLightFrame(String title) {
    super(title);
    buildWindow();
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setSize(400, 250);
    // Add all components to the frame's panel
    private void buildWindow() {
    GridBagLayout layout = new GridBagLayout();
    GridBagConstraints constraints = new GridBagConstraints();
    setLayout(layout);
    // Add all the labels
    JLabel label = new JLabel("Manual");
    constraints.gridx = 0;
    constraints.gridy = 0;
    constraints.gridwidth = 1;
    constraints.gridheight = 1;
    constraints.weightx = 0;
    constraints.weighty = 0;
    constraints.fill = GridBagConstraints.NONE;
    constraints.anchor = GridBagConstraints.NORTHWEST;
    constraints.insets = new Insets(5, 5, 0, 0);
    layout.setConstraints(label, constraints);
    add(label);
    label = new JLabel("Action");
    constraints.gridx = 1;
    layout.setConstraints(label, constraints);
    add(label);
    label = new JLabel("Advance");
    constraints.gridx = 2;
    layout.setConstraints(label, constraints);
    add(label);
    label = new JLabel("Timer Progress");
    constraints.gridx = 0;
    constraints.gridy = 4;
    layout.setConstraints(label, constraints);
    add(label);
    // Add the Radio Buttons
    ButtonGroup lights = new ButtonGroup();
    JPanel aPanel = new JPanel();
    aPanel.setLayout(new BoxLayout(aPanel, BoxLayout.Y_AXIS));
    aPanel.setBackground(Color.black);
    for (int i=0; i<3; i++) {
    buttons[i] = new JRadioButton("", false);
    buttons.setBackground(Color.black);
    lights.add(buttons[i]);
    aPanel.add(buttons[i]);
    buttons[0].setText("Red");
    buttons[1].setText("Yellow");
    buttons[2].setText("Green");
    buttons[0].setForeground(Color.red);
    buttons[1].setForeground(Color.yellow);
    buttons[2].setForeground(Color.green);
    constraints.gridx = 0;
    constraints.gridy = 1;
    constraints.gridheight = 3;
    constraints.fill = GridBagConstraints.BOTH;
    layout.setConstraints(aPanel, constraints);
    add(aPanel);
    // Make the Actions List
    String[] actions = {"Stop", "Yield", "Go"};
    actionList = new JComboBox(actions);
    constraints.gridx = 1;
    constraints.gridy = 1;
    constraints.gridheight = 1;
    constraints.weightx = 1;
    constraints.fill = GridBagConstraints.HORIZONTAL;
    layout.setConstraints(actionList, constraints);
    add(actionList);
    // Make the Slider
    slider = new JSlider(JSlider.HORIZONTAL, 0, 20, 1);
    slider.setMajorTickSpacing(5);
    slider.setMinorTickSpacing(1);
    slider.setPaintTicks(true);
    slider.setPaintLabels(true);
    constraints.gridx = 1;
    constraints.gridy = 3;
    layout.setConstraints(slider, constraints);
    add(slider);
    // Add the auto checkbox button
    autoButton = new JCheckBox("Auto Advance");
    constraints.gridx = 1;
    constraints.gridy = 2;
    constraints.fill = GridBagConstraints.BOTH;
    layout.setConstraints(autoButton, constraints);
    add(autoButton);
    // Add the Advance Picture button
    advButton = new JButton(new ImageIcon("RedLight.jpg"));
    constraints.gridx = 2;
    constraints.gridy = 1;
    constraints.gridheight = 3;
    constraints.weightx = 0;
    constraints.weighty = 1;
    constraints.fill = GridBagConstraints.BOTH;
    constraints.insets = new Insets(5, 5, 0, 5);
    layout.setConstraints(advButton, constraints);
    add(advButton);
    // Add the progress bar
    progressBar = new JProgressBar(JProgressBar.HORIZONTAL, 0, 8);
    constraints.gridx = 0;
    constraints.gridy = 5;
    constraints.gridwidth = 3;
    constraints.gridheight = 1;
    constraints.weightx = 1;
    constraints.weighty = 2;
    constraints.fill = GridBagConstraints.BOTH;
    constraints.insets = new Insets(5, 5, 5, 5);
    layout.setConstraints(progressBar, constraints);
    add(progressBar);
    public static void main(String args[]) {
    TrafficLightFrame frame = new TrafficLightFrame("Traffic Light");
    frame.setVisible(true);
    }When I launch the Java appliation, I get the dialog box error saying "Application Error - Unable to launch the application"
    Exception:
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: file:/C:/Documents and Settings/HP_Administrator/Desktop/TrafficLight/TrafficLight.jnlp
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Wrapped Exception
    java.io.FileNotFoundException: C:\Documents and Settings\HP_Administrator\Desktop\TrafficLight\TrafficLight.jnlp (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doGetRequest(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    actually there are 2 problems here:
    file:///Documents and Settings/... will work, but this means the path:
    /Documents and Settings/... on the current path.
    if you have to include the "c:" part first, then there needs to be only 2 leading slashes, because "/C:/Documents and Settings/..." is not a leagle pathname (even after replacing the file separators).
    However the colon (":") char is not legal in a URL, so has to be escaped.
    Best to just use: "file:///Documents and Settings/..."
    /Andy

  • Unable to launch application error

    Everytime I try to open a jnlp file i get the Unable to launch application error. I have no clue how to fix this and would like to know a solution. I currently have JRE 6 Update 6. Here is the error info.
    java.lang.Exception: cache failed forhttp://pokeglobal.sourceforge.net/game/beta.jnlp
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Java Web Start 1.6.0_06
    Using JRE version 1.6.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\MILTON
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    0-5: set trace level to <n>
    #### Java Web Start Error:
    #### cache failed forhttp://pokeglobal.sourceforge.net/game/beta.jnlp

    I see, you found a solution for this problem. Can you share it with me please, because i am having the same error right now.

Maybe you are looking for

  • Transport request deleted - how can I delete the link in CharM ticket?

    Hi everyone, yesterday, I manually deleted an empty transport request in the development system. Bad idea, I know, because now, I get errors in the CharM ticket, because it still has a link to the transport request, which has been deleted. How can I

  • How do I force cellular data while on Wi-Fi

         Here is my problem:  I want to run airplay from my iphone to a stereo in my garage that is under my house.  I bought an airport express and put it in my garage and ran a 3.5 mm jack from it to my stereo.  The problem is the range on the airport

  • BTE 503113 - FIS_VBREVK_1&FIS_VBREVK_2 always empty

    Hi, Did anyone worked with BTE 503113? It seems  FIS_VBREVK_1&FIS_VBREVK_2 are always empty. It's called within FORM MAINTAIN_RR_STATUS (include LVFRRF0M), like this, so with dummy parameters: perform maintain_rr_status using pis_xvbak               

  • How to run adt.jar in headless mode?

    Hi, I am facing issues packaging flex iOS applicaition in headless mode. Here is the error I am getting: After googling, I found this error might not occur when run in headless mode. I have already set the <headless-server>true</headless-server> in t

  • Multiple Category Dimensions

    Hi Everyone, We are integrating ATG 10.2 with Endeca 3.1.2. We are going to have 10 different sites with different catalogs but the products and sku's can be shared across the catalogs. To meet this requirement we are using CustomCatalogVariantProduc