Another error, same jnlp

I receive another error:
An error occurred while launching/running the application.
Category: Launch File Error
No application resources are specified for this platform. Please, contact the vendor of the application to make sure that this is a supported platform.
My Jnlp file is:
<?xml version="1.0" encoding="utf-8"?>
<jnlp
     spec="1.0+"
     codebase="http://localhost/testejnlp/"
     href="jwsteste.jnlp">
     <information>
          <title>JWS Teste</title>
          <vendor>Tiago Motta</vendor>
          <homepage href="index.html"/>
          <description>Esse eh um teste de Java Web Start</description>
          <offline-allowed/>
     </information>
     <security>
          <all-permissions/>
     </security>
     <resourses>
     <j2se version="1.3+" href="http://java.sun.com/products/autodl/j2se"/>
     <jar href="jwsteste.jar" main="true" download="eager"/>
     </resourses>
     <application-desc main-class="JWSTeste1"/>
</jnlp>
Please help-me, i'm crazing...

If you look closely at the error message (pay attention to spelling) and then at your JNLP file, I'm sure the answer to your problem will become apparent.

Similar Messages

  • Getting same error message - 1st time ever having a problem witn iTunes.  Tried to re-install iTunes but that just got another error message.  Does this mean I have lost everything.

    Getting same error message - 1st time ever having a problem witn iTunes.  Tried to re-install iTunes but that just got another error message.  Does this mean I have lost everything.

    Have a look at the articles mentioned  here:http://support.apple.com/kb/TS3694
    Unknown Error containing "0xE" when restoring: To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.

  • I am getting the same error when I attempted to upgrade my iTunes SW as many of you have gotten. I attempted a fresh download with another error. Has anyone figured it out yet?

    I am getting the same error when I attempted to upgrade my iTunes SW as many of you have gotten. I attempted a fresh download of iTunes with another error. Has anyone figured it out yet?

    Have a look at the articles mentioned  here:http://support.apple.com/kb/TS3694
    Unknown Error containing "0xE" when restoring: To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.

  • INSERTINR ANOTHER ERROR

    hI,
    i Change the Structure of CUSTOMER_T to KNA1 from BRFCKNA1</b>'
    BUT another Error will be shown
    ''Comma without preceding colon (after INSERT ?).''          
    FUNCTION ZRFC_CUSTOMER_INSERT.
    ""Local Interface:
    *"  EXPORTING
    *"     VALUE(RFCRC) LIKE  SY-SUBRC
    *"     VALUE(ERROR_TEXT) TYPE  T100-TEXT
    *"  TABLES
    *"      CUSTOMER_T STRUCTURE  KNA1 OPTIONAL
    *"  EXCEPTIONS
    *"      INSERT_ERROR
    DATA INSERT_VIA_CALL_TRANSACTION VALUE 'X'.
      LOOP AT CUSTOMER_T.
        IF INSERT_VIA_CALL_TRANSACTION = 'X'.
        update via CALL TRANSACTION
          PERFORM BDC_INIT.
          PERFORM BDC_NEXT_DYNPRO USING 'SAPMF02D' 101.
         PERFORM BDC_SET_FIELD USING 'RF02D-KUNNR' CUSTOMER_T-KUNNR.
          PERFORM BDC_SET_FIELD USING 'RF02D-D0110' 'X'.
          PERFORM BDC_NEXT_DYNPRO USING 'SAPMF02D' 110.
          PERFORM BDC_SET_FIELD USING 'KNA1-KUNNR' CUSTOMER_T-KUNNR.
          PERFORM BDC_SET_FIELD USING 'KNA1-ANRED' CUSTOMER_T-ANRED.
          PERFORM BDC_SET_FIELD USING 'KNA1-NAME1' CUSTOMER_T-NAME1.
          PERFORM BDC_SET_FIELD USING 'KNA1-PFACH' CUSTOMER_T-PFACH.
          PERFORM BDC_SET_FIELD USING 'KNA1-STRAS' CUSTOMER_T-STRAS.
          PERFORM BDC_SET_FIELD USING 'KNA1-PSTLZ' CUSTOMER_T-PSTLZ.
          PERFORM BDC_SET_FIELD USING 'KNA1-ORT01' CUSTOMER_T-ORT01.
          PERFORM BDC_SET_FIELD USING 'KNA1-TELF1' CUSTOMER_T-TELF1.
          PERFORM BDC_SET_FIELD USING 'KNA1-TELFX' CUSTOMER_T-TELFX.
          PERFORM BDC_SET_FIELD USING 'BDC_OKCODE' '=UPDA'.
          PERFORM BDC_CALL USING 'XD02' CHANGING ERROR_TEXT.
    *DATA : CUSTOMER_T TYPE KNA1.
    INSERT INTO KNA1(KUNNR,NAME1) VALUES (CUSTOMER_T-KUNNR,CUSTOMER_T-NAME1).
                       CUSTOMER_T-PFACH,
                        CUSTOMER_T-STRAS,
                       CUSTOMER_T-PSTLZ,
                        CUSTOMER_T-ORT01,
                        CUSTOMER_T-TELF1,
                        CUSTOMER_T-TELFX.
        ENDIF.
      exception handling
        IF SY-SUBRC NE 0.
          RFCRC = SY-SUBRC.
         raise update_error.
        ENDIF.
      ENDLOOP.
    ENDFUNCTION.
           Start new screen
    FORM BDC_INIT.
      CLEAR BDC_CALL.
      APPEND BDC_CALL.
    ENDFORM.                    "BDC_INIT
    FORM BDC_NEXT_DYNPRO USING program dynpro.
      CLEAR BDC_CALL.
      BDC_CALL-program  = program.
      BDC_CALL-dynpro   = dynpro.
      BDC_CALL-dynbegin = 'X'.
      APPEND BDC_CALL.
    ENDFORM.                    "BDC_NEXT_DYNPRO
           Insert field
    FORM BDC_SET_FIELD USING fnam fval.
      IF fval <> space.
        CLEAR BDC_CALL.
        BDC_CALL-fnam = fnam.
        BDC_CALL-fval = fval.
        APPEND BDC_CALL.
      ENDIF.

    Hello,
    What is ur actual requirement.
    U r performing a BDC in The Tcode XD02 then why u r inserting a value to the same table.
    If u want to change the customer then use the BAPI
    If you need to change the customer details in background use this
    BAPI_CUSTOMER_CHANGEFROMDATA1
    Check also :
    BAPI_CUSTOMER_EDIT
    or std prog RFBIDE00
    If useful reward.
    Vasanth

  • Follow-up to archived thread "Another Error (I think) In the 12.1 New Features Guide"

    I hoped to be able to add a reply to the most recent reply on March 8 in the "Another Error (I think) In the 12.1 New Features Guide" thread (https://community.oracle.com/thread/3526588), but since that thread has been archived, I am doing what was suggested elsewhere: create a new thread referencing the old one. My reply is:
    Thank you for your explanation about preferring PDF over HTML. That is perfectly fine and understandable. Also, we very much appreciate your documentation feedback in this forum, and encourage you to continue to report any issues here.
    I apologize for not replying much sooner. I either didn't get or overlooked an original notification about "Recent activity" after your reply; otherwise, I would have replied then.

    Thanks for that comment. I have sent a pointer to it to the writer for that book. Note that with the New Features Guide, most of the content is automatically drawn from an internal system that tracks projects and features; so if a change is needed, the writer will notify the owner of that content (typically a developer or a product manager) to investigate and (if necessary) modify the underlying data, after which the changed information will be picked up for a future revision of the book.
    Also, while anyone is welcome to enter documentation comments in this forum, another option that may be more convenient for comments on specific sections is the Reader Comment area at the bottom of each HTML page (such as http://docs.oracle.com/cd/E16655_01/server.121/e17906/chapter1.htm#NEWFT495 for the page containing Section 1.5.9.8). Any comments entered in a Reader Comment area go to someone in our documentation production group, who forwards them to the appropriate writers.
    However, if a comment involves multiple HTML pages or books, or if you want the matter to be in a public forum for visibility and searchability, posting in this forum is a good option.

  • How can I migrate everything from one account to another on same computer?

    How can I migrate everything from one account to another on same computer?

    Transferring files from one User Account to another

  • I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • I try to open Firefox. Get error message saying Firefox is already running and needs to close - another error message say Firefox can't open

    Turned on laptop (rebooted) after being away from it for a few hours. Went to open my home page. Error message popped up saying Firefox is already running and must be closed. I closed it and another error message popped up saying Firefox can't open - incomplete or missing files.
    I went into Processes to close Firefox. Selected 'end process' but nothing happened.
    Tried to use Internet Explorer but it just gets hung up. Cannot access anything.
    And, because I can't open Firefox, I can't go a refresh.
    Everything was working just fine a few hours ago.
    Any thoughts?

    What is the computer system and Firefox on the bad computer?
    Separate Issue;
    Your System Details on this computer shows;
    Multiple versions of your Adobe programs.
    Having more than one version of a program may cause issues.
    Go to '''adobe.com''' and download the full installers after removing
    all of the old programs.
    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift><br> ''(Mac Options)'' ''' key, and then starting Firefox. Is the problem still there?
    This is not a cure but will make it easier if Firefox locks up in Windows.
    '''https://support.mozilla.org/questions/997866''' {web link}

  • Just started getting an APS Daemon.exe-System Error saying my MSVCR80.dll file is missing.  I tried to reinstall itunes, but got another error message.  Anyone having this problem or know how to fix it?

    Just last 2 days started getting an APS Daemon.exe-System Error saying my MSVCR80.dll file is missing when booting up my PC with Windows 7.  I tried to reinstall itunes, but got another error message.  Anyone having this problem or know how to fix it?
    I now see the message from tt2 and will try that.  Thanks!

    Read this:
    MSVCR80.dll missing, cannot install iTunes

  • I have an ipod nano 4GB and use pc windows xp . since last year my ipod didnt sync any new songs saying "the ipod cannot be synced the required folder couldnt be found" and when i try to update the itunes version another error occured. plz HELP!!!!!!!!!

    I have an ipod nano 4gb and use pc with windows XP. since last year my ipod suddenly didnt want to sync any new songs saying " the ipod "MOAMEN" cannot be synced. the required folder couldnt be found" and when i try to update the itunes version another error occurs and i dont know when i tryed to format ipod i didnt find "format" button. so plz give me suggestions instructions i extremely bored !!!!!!!!!!!!!1

    Uninstall/Reinstall iTunes then try to rebuild the library.
    http://support.apple.com/kb/HT1925  (uninstall/reninstall)
    http://support.apple.com/kb/HT1451 (recreate library)

  • Error 1311 Source file not found? Plus another error. I need help bad!

    Error 1311. Source file not found. S:\Documents and Settings\Owner\Local Settings\Temparary Internet Files\content.IE5\45UJKXYZ\ja150000[ 1 ].cab. Verify that the file exists and that you can access it.
    That appears when trying to install Java 5 update. What can I do to fix that?
    This is another error I've got.
    hs_err_pid424 error
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x64DAD49
    Function=Java_sun_awt_windows_WToolkit_printWindowsVersion+0x1CB9
    Library=C:\Program Files\Java\j2re1.4.2_08\bin\awt.dll
    What's those mean and how can I fix them? Plus after installing J2re1.4.2_08 I get a fuzzy looking screen and lines look doubled or outlined some.

    hello folks,
    I have Windows XP home Firefox v1.0.6.
    removed old java in Add/Remove programs.
    cleared the "Temporary Internet Files" folder that contained C:\Documents and Settings\Greg\Local Settings\Temporary Internet Files\Content.IE5.
    tried to load jre-1_5_0_04-windows-i586-p-iftw.exe for the third time, and the install still hangs up.
    J2SE Runtime Environment 5.0 Update Installer Information : Error 1311. Scource file not found: C:\Documents and Settings\Greg\Local Settings\Temporary Internet Files\Content.IE5\2XFKL4VY\je150000[1].cab. Verify that the file exists and that you can access it.
    and,
    Error 1311. Scource file not found: C:\Documents and Settings\Greg\Local Settings\Temporary Internet Files\Content.IE5\EEIDPHGA\jp150040[1].cab. Verify that the file exists and that you can access it.
    here's the thing, I cannot surf to "Content.IE5" folder in my "Local Settings\Temporary Internet Files" folder, but I can plug in the directory in the address bar of Windows Explorer & see the "Content.IE5" folder.
    I do not see "je150000[1].cab" or "je150000[1].cab" in there.
    Am I using the wrong program to fresh install Java for Firefox in XP?
    Is there something wrong with my operating system?
    monitoring this thread.....
    thanx.

  • The file is not compatible with this version of photoshop / CS2 error -- Same File : CS6 no error / CS2 error , I need trouble shooting method, Please

    the file is not compatible with this version of photoshop / CS2 error -- Same File : CS6 no error / CS2 error , I need trouble shooting method, Please

    Save with Maximize Compatibility in CS6.
    Choose Edit > Preferences > File Handling (Windows) or Photoshop > Preferences > File Handling (Mac OS). 
    From the Maximize PSD and PSB File Compatibility menu, choose any of the following: 
      Always 
    Then re-save your file so it can open in CS2

  • EBS 12.0.6 Upgrade to 12.1.1 Another Error

    Hi Hussein,
    I just hit a another error for worker 1.
    sqlplus -s APPS/***** @/mnt/data/u01/oracle/TEST32/apps/apps_st/appl/fnd/12.0.0/patch/115/sql/afgstusr.sql &un_fnd &pw_fnd
    PL/SQL procedure successfully completed.
    ERROR: The Profile "Guest User Password" is not properly defined or
    the data associated with this profile is out of configuration.
    CORRECTIVE ACTION: Please contact Oracle Applications Support for
    assistance in validating the configuration of this profile
    The "GUEST_USER_PWD" in vault has been validated as : "GUEST/ORACLE"
    DECLARE
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 15
    Thanks again.
    Regards,
    cmadiam

    Please see these docs.
    GUEST_USER_PWD Profile Option Is Not Available In R12.1 Instance [ID 788979.1]
    How To Set A System Profile Value Without Logging In To The Applications [ID 364503.1]
    How to Change Profile Option Value Without Forms? [ID 943710.1]
    How To Successfully Change The Guest Password In E-Business Suite 11.5.10 and R12 [ID 443353.1]
    Thanks,
    Hussein

  • Dumping mount point one server to another server same configration

    We are trying to dump the mount point one server to another server same configration.If we copy all things from current server to newserver on same mount point /file system,same directory.I am doing this activities first time.Is it anybody clear my question?
    1.I don't need to install oracle and database
    2.what parameter I have to set for that?
    Oracle 10g
    OS:Solaris 5.10

    Oracle instances are physically disconnected from Oracle databases.
    The instance determines the database to open based on initialization parameters (init.ora and spfile) and environment variables: ORACLE_SID.
    The docs are at http://tahiti.oracle.com.
    You need to read the docs and understand the full scope of the issue. A couple of quick paragraphs in a forum is not what you need. Also consider asking your manager to hire a consultant to help you with the project and provide you with some mentoring.

  • I have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    i have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    What payment method are you trying to use? Prepaid debit cards by chance? Apple does not accept prepaid cards.

Maybe you are looking for

  • Error while loading xml file

    I am getting error while loading the XML file. I have attached the jpg file which shows error details.....pls let em know the solution.... thanks

  • Help with install photoshop cs4 extended in win7 64bit !

    im using windows 7 ultimate 64bit, i tried to install photoshop cs4 extended but when it's done with error. So any idea about this issue ?

  • SIGBUS (0xa)  - HotSpot Virtual Machine (1.4.2_16-b05 mixed mode)

    Please have a look at the issue and tell me how can I fix it. Thanks in advanced # An unexpected error has been detected by HotSpot Virtual Machine: # SIGBUS (0xa) at pc=0xfeddfc04, pid=20598, tid=1 # Java VM: Java HotSpot(TM) Client VM (1.4.2_16-b05

  • Calculate the date range from entered date

    HI My requirement is to get the data in a perticular intervals of posting date. Directly we can create a variable with interval on posting Date to have the required data but Here we need two have two varibles because in one varibale user enters posti

  • Screen are not openning ?

    Hi All, I'm in entry stage of SD Module, Please help me, I & my computer stuck with a <b>system error</b>--Unable to lock Table/view V_TVAK. while going for tcode VOV8 as well as Path. --Unable to lock table/view V_TVKO while difining Sales Orgn. --U