Newbie: Application descriptor cannot be parsed error 100

Here's my descriptor file:
<?xml version=1.0" encoding ="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/1.5.1">
    <id>myTest</id>
    <filename>myTest</filename>
    <description>A simple AIR hello world application</description>
    <version>0.1</version>
    <initialWindow>
        <content>myTest.html</content>
        <title>AIR Hello World</title>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <minimizable>true</minimizable>
        <maximizable>true</maximizable>
        <resizable>true</resizable>
    </initialWindow>
</application>
and here's the error I'm getting
/Volumes/My Book/Air Applications/myTest.html: error 100: Application descriptor cannot be parsed
Can anyone help?

Stupid error.  Forgot a quote in the first line.  Fixed it, but I have another problem now that I'll ask in another thread.

Similar Messages

  • Error 100: Application descriptor cannot be parsed

    Hi, I'm tryng to compile an air application, and adt return
    the error in subject.
    My application tag is :
    quote:
    <application xmlns="
    http://ns.adobe.com/air/application/1.5">[/Q
    Can't understand.
    Please help me :-)

    Hi joe, thank you for your answer.. It was a stupid error.. I
    was tryng to compile passing my files to adt in wrong order.

  • Application Descriptor cannot be parsed?

    Been working on an iPad app in CS5.5 for a couple weeks and started getting this error today when trying to test. Tried to delete the file, and the new one gives the same result. Pasted the xml into a validator and it validates fine...
    5.5 is really starting to feel like a beta. So far, for me, it's been nothing but a PITA and is wasting so much of my time.

    Create a new xml file with the name of your appname-app.xml and paste the contents below and change your relevant things:
    <?xml version="1.0" encoding="utf-8" ?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
        <id>in.rithesh.iPadTestApp.AccelerometerSample</id>
        <versionNumber>1.0.6</versionNumber>
        <filename>AccelerometerSample</filename>
        <name><text xml:lang="en">AccelerometerSample</text></name>
        <description><text xml:lang="en">AccelerometerSample</text></description>
        <copyright>ADT Helper by Pixelthis</copyright>
        <initialWindow>
            <title>AccelerometerSample</title>
            <content>AccelerometerSample.swf</content>
            <autoOrients>true</autoOrients>
            <renderMode>auto</renderMode>
            <fullScreen>true</fullScreen> 
            <aspectRatio>landscape</aspectRatio> 
        </initialWindow>
        <supportedProfiles>mobileDevice desktop</supportedProfiles>
        <iPhone>
            <InfoAdditions><![CDATA[ 
                <key>UIStatusBarStyle</key> 
                <string>UIStatusBarStyleBlackOpaque</string> 
                <key>UIRequiresPersistentWiFi</key> 
                <false/>
                <key>UIApplicationExitsOnSuspend</key>
                <true/>
                <key>UIPrerenderedIcon</key>
                <false/>
                <key>UIDeviceFamily</key>
                <array>
                    <string>2</string>
                </array>
            ]]></InfoAdditions>
            <requestedDisplayResolution>standard</requestedDisplayResolution>
        </iPhone>
    </application>
    and publish it again.

  • Weblogic.application.ApplicationException cannot be resolved error

    Hi,
    I am new to Weblogic Server. I am creating a web application in which I have created a custom MBean. Right now, I am coding the class which extends 'ApplicationLifecycleListener' in order to register the custom MBean automatically when the app is started. I am getting the following error (a red mark appears at the very top of the class, before anything else):
    “The type weblogic.application.ApplicationException cannot be resolved. It is indirectly referenced from required .class files”
    I am using WL server 10.0. When I looked at the API for 'ApplicationLifecycleListener' for WLS 10.0, the methods do not throw this exception, although the 9.0 API does. see here:
    [url http://edocs.bea.com/wls/docs100/javadocs/weblogic/application/ApplicationLifecycleListener.html]
    this is my listener class
    package Files;
    import javax.management.MBeanServer;
    import javax.management.MalformedObjectNameException;
    import javax.management.ObjectName;
    import javax.naming.InitialContext;
    import weblogic.application.*;
    import weblogic.application.ApplicationContext;
    import weblogic.application.ApplicationLifecycleEvent;
    import weblogic.application.ApplicationLifecycleListener;
    public class AppLifeCycleListenerImp extends ApplicationLifecycleListener  {
         private MBeanServer server;
         public void postStart(ApplicationLifecycleEvent evt){
              try{     
                   ApplicationContext appctx = evt.getApplicationContext();
                   String appID = appctx.getApplicationId();                              
                   ObjectName name = new ObjectName("RIM.SVandV:Name="+appID+",Type=customObjectMBean");
                   InitialContext ctx = new InitialContext();
                   //Listener running within J2EE module =>the JNDI name for the Runtime MBeanServer is: java:comp/env/jmx/runtime
                   server = (MBeanServer)ctx.lookup("java:comp/env/jmx/runtime");
                   CustomObject mbean = new CustomObject(); 
                   mbean.setInteger1(12);mbean.setInteger2(22);
                   mbean.setString1("hello12");mbean.setString2("hello22");
                   server.registerMBean(mbean, name);
              }catch (Exception e){
                   e.printStackTrace();
         public void preStop(ApplicationLifecycleEvent evt){
              try{          
                   ApplicationContext appctx = evt.getApplicationContext();
                   String appID = appctx.getApplicationId();                              
                   ObjectName name = new ObjectName("RIM.SVandV:Name="+appID+",Type=customObjectMBean");
                   server.unregisterMBean(name);
              }catch (Exception e){
                   e.printStackTrace();
    This is my MBean class
    package Files;
    public interface CustomObjectMBean {
         public int getInteger1();     
         public int getInteger2();     
         public String getString1();     
         public String getString2();
    and this is the MBean implementing class
    package Files;
    public class CustomObject implements CustomObjectMBean{
         private int integer1;
         private int integer2;
         private String string1;
         private String string2;
         public int getInteger1(){
              return integer1;
         public int getInteger2(){
              return integer2;
         public String getString1(){
              return string1;          
         public String getString2(){
              return string2;
         public void setInteger1(int integer1){
              this.integer1 = integer1;
         public void setInteger2(int integer2){
              this.integer2=integer2;
              public void setString1(String string1){
              this.string1=string1;          
         public void setString2(String string2){
              this.string2=string2;
    }any help would be great. thank you.

    weblogic.application.ApplicationException should be in weblogic.jar, in your server/lib directory.
    George

  • File Upload Download Application- Query cannot be parsed within the Builder

    Posting for those who encounter this problem.
    In the section "Store the Document in a Custom Table", you will encounter a problem with the SQL:
    if ( :P2_FILE_NAME is not null ) then
    insert into file_subjects(id,NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE)
    select id,:P2_FILE_NAME,:P2_SUBJECT,blob_content,mime_type
    from wwv_flow_files where name = :P2_FILE_NAME;
    delete wwv_flow_files where name = :P2_FILE_NAME;
    end if;
    The problem is that the BLOB_CONTENT column has not been initialised with and empty BLOB locator.
    I modified the SQL as follows. If there is a better way of doing this please post.
    if ( :P2_FILE_NAME is not null ) then
    insert into file_subjects(id,NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE)
    select id,:P2_FILE_NAME,:P2_SUBJECT,EMPTY_BLOB(),mime_type
    from wwv_flow_files
    where name = :P2_FILE_NAME;
    insert into file_subjects(blob_content)
    select blob_content
    from wwv_flow_files
    where name = :P2_FILE_NAME;
    delete from wwv_flow_files where name = :P2_FILE_NAME;
    end if;

    Does your parsing schema have direct granted privileges to execute the function or privileges via a role? If it is through a role, you need to directly grant execute on the function to your parsing schema.
    Mike

  • InfoPath 2010 form parsing error with 3600 execution timeout value in SharePoint 2010

    Hi,
    I have a list in SharePoint 2010 with 100 columns where 25 of them are calculated columns. This list is designed by InfoPath 2010 with two secondary data connections to pull a few data from another two lists. There are 25 set value rules with the submit
    button in InfoPath from. At present, the list is containing around 1000 items.
    The problem is, when I published the InfoPath form it throws an error:
    The SOAP message cannot be parsed.
    In fact, the execution timeout is set to 3600 in config file. When I delete items from the list and keep it around 700 the InfoPath form publish then.
    Could somebody tell me why this problem and what is the possible solution.
    Thanks in advance.

    Hi pointtoshare,
    According to your description, my understanding is that you got an error when you published InfoPath form.
    Please modify the web.config file like :
    <location path="_layouts/UploadEx.aspx">
         <system.web>
           <httpRuntime maxRequestLength="51200" executionTimeout="300" />
         </system.web>
       </location>
    And modify the <securityPolicy> section like :
    The web.config file is in C:\inetpub\wwwroot\wss\VirtualDirectories\spwebappname.
    There is another reason for this issue, please take a look at :
    http://www.heyweb.net/2011/07/infopath-the-soap-message-cannot-be-parsed/
    Here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/ea8da113-fe9a-4878-9994-c1f24cc85c37/soap-error-when-publishing-infopath-form-to-sharepoint?forum=sharepointcustomizationprevious
    http://sharepointshah.blogspot.in/2012/11/soap-message-cannot-be-parsed-error.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Please help me fix error " Application descriptor file cannot be parsed "

    I start with Flash - AIR for Android
    When i publish :
    A notice :
    "Error creating files
    Application descriptor file cannot be parsed"
    File XML by Flash created :
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/3.2">
      <id>com.adobe.example</id>
      <versionNumber>1.0.6</versionNumber>
      <versionLabel>1.0.6</versionLabel>
      <filename>example</filename>
      <description/>
      <!-- To localize the description, use the following format for the description element.<description><text xml:lang="en">English App description goes here</text><text xml:lang="fr">French App description goes here</text><text xml:lang="ja">Japanese App description goes here</text></description>-->
      <name>example</name>
      <!-- To localize the name, use the following format for the name element.<name><text xml:lang="en">English App name goes here</text><text xml:lang="fr">French App name goes here</text><text xml:lang="ja">Japanese App name goes here</text></name>-->
      <copyright/>
      <initialWindow>
        <content>example.swf</content>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <fullScreen>true</fullScreen>
        <aspectRatio>portrait</aspectRatio>
        <renderMode>auto</renderMode>
        <autoOrients>false</autoOrients></initialWindow>
      <icon>
        <image36x36>icon/icon36.png</image36x36>
        <image48x48>icon/icon48.png</image48x48>
        <image72x72>icon/icon72.png</image72x72>
      </icon>
      <customUpdateUI>false</customUpdateUI>
      <allowBrowserInvocation>false</allowBrowserInvocation>
      <android>
        <manifestAdditions>
          <![CDATA[<manifest>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    </manifest>]]>
        </manifestAdditions>
      </android>
    </application>
    I don't pubslish apk ?
    Please hellp me  fix error

    I have tried and  able to package an apk using your XML file.Could you please make sure your XML file starting from line 1 and coloumn 0.Any space will results in the error (Application Descriptor file cannot be parsed)
    -Pranali

  • The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5

    The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5
    This is happening for most of the pupils and staff at our school and they are unable to complete their work.
    This also happens on a fresh copy of windows and CS5.5 without any updates and also with all latest updates.
    I have tried it on 32-bit and 64-bit CS5, Windows, Air and Java with the same error every time.
    There are a small minority of users where this works fine for them with no issue.
    I have tried re-setting user profiles.
    I have tried a local admin and domain admin account with the same issue
    I have noticed however that if the file is moved to the shared area it will compile. If it is on their documents area it will not compile. The users have full control in both locations. This is fine for staff but we are unable to give full control or modify access to the shared area for the pupil's
    I have been through the online support section and it directed me to phone Adobe Customer care who informed me that all support has been discontinued for CS5, CS5.5 and CS6 and they will only support creative cloud.
    Any ideas what to try next? There is no other information about this error and I cannot work out what is causing it.

    I have tried and  able to package an apk using your XML file.Could you please make sure your XML file starting from line 1 and coloumn 0.Any space will results in the error (Application Descriptor file cannot be parsed)
    -Pranali

  • Air App for Android - error 301: application descriptor missing

    Greetings!
    I've been building in Flash for a while but am brand new to mobile development.  I'm currently trying to create my first Android app, a very basic game called "302 Saves The Galaxy". I don't intend to sell the game.  I'm really just trying to learn my way through the publication process for future projects.
    I've been able to get to the very last step in creating the apk file and I'm getting this error from the command-line process -
    "Error 301: Application descriptor missing/cannot be opened"
    Here's a screen shot of the command line window -
    Here are a few other details about my process -
    In Flash, I selected to publish to Air 2.0 because that's the only option I had (ie, no Air 2.5 option)
    I've triple-checked and all spellings seem to be correct in my command-line syntax
    I'm sure I'm missing something obvoius here.  Any suggestions?
    Thanks in advance!
    Joel

    Hi, Pahup!
    Thank you SO MUCH for that tip!  That solved the problem!  Like I said, I knew it must be something pitifully easy that I was overlooking. 
    Anyway, I really appreciate your taking the time to respond.
    Joel

  • Spell checker error: null cannot be parsed to a squiggly dictionary

    I organized a spell-checker with help Squiggly in my app ( http://labs.adobe.com/technologies/squiggly/).
    _newdict.addEventListener(Event.COMPLETE, handleLoadComplete);
    _newdict.load("dictionaries/en_EN/en_EN.aff", "dictionaries/en_EN/en_EN.dic");
    Everything works fine when the dictionary files is in the same folder as the app. But the dictionary have large size (over 5MB). Therefore load it on user demand. Files can not save the program folder, but only application Storage Directory.
    However, when initializing the dictionary there is an error: null cannot be parsed to a squiggly dictionary. I've tried both ways: file1.nativePath and file1.url, it is still the error.
    var file1:File = File.applicationStorageDirectory.resolvePath("dictionaries/en_EN/en_EN.aff");
    var file2:File = File.applicationStorageDirectory.resolvePath("dictionaries/en_EN/en_EN.dic");
    if (!file1.exists || !file2.exists){
        //download files from the server
    } else {
        _newdict.addEventListener(Event.COMPLETE, handleLoadComplete);
        _newdict.load(file1.nativePath,file2.nativePath);
       //_newdict.load(file1.url,file2.url);
    Tell me how to solve the issue, please?

    Subhranshu,
    Remove the CO extension and check whether it still throws the same error, or it throws the error when u extend the CO.
    Regards,
    Gyan

  • The application "whatever" cannot be launched.  -10810  Getting this error.

    On Friday, I ran into a issue where I can't launch new programs from the dock.
    When I try to launch something, it gives me an error message. The application "Firefox" cannot be launched. -10810.
    I end up having to reboot the whole computer. Then I can start programs again.
    But after half an hour, the issue is back and I am getting the error again.
    I am typically running Mail, Safari 3.1, Parallels, newest Firefox and Adium (newest version).
    I can't really relate it to any specific single program that is causing the problems.
    What does that error message mean?
    Anyone have any ideas?
    I already installed the new firmware update today, hoping that would magically fix it. But it didn't help.
    I have all the latest apple updates for the computer installed, and Leopard.
    Help, anyone?

    I went into console, and there were hundreds of these messages:
    3/31/08 4:19:00 PM Mail[631] lexer results overflow
    Then, below all that, I get this:
    3/31/08 4:21:03 PM com.apple.launchd[72] ([0x0-0x134134].com.apple.AddressBook.sync) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:21:03 PM com.apple.launchd[72] ([0x0-0x134134].com.apple.AddressBook.sync) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:26:12 PM com.apple.launchd[72] (com.apple.PreferenceSyncAgent) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:26:21 PM UserEventAgent[144] CalAlarmAgent :: WARNING: could not launch iCal Helper
    3/31/08 4:26:21 PM com.apple.launchd[72] ([0x0-0x135135].com.apple.iCal.helper) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:26:21 PM com.apple.launchd[72] ([0x0-0x135135].com.apple.iCal.helper) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:27:56 PM org.cups.cups-lpd[661] launchproxy[661]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.198 on port: 1155
    3/31/08 4:28:15 PM com.apple.launchd[72] ([0x0-0x136136].com.apple.AddressBook.sync) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:28:15 PM com.apple.launchd[72] ([0x0-0x136136].com.apple.AddressBook.sync) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:28:46 PM org.cups.cups-lpd[667] launchproxy[667]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.196 on port: 2484
    3/31/08 4:32:26 PM com.apple.launchd[72] ([0x0-0x138138].com.apple.AddressBook.sync) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:32:26 PM com.apple.launchd[72] ([0x0-0x138138].com.apple.AddressBook.sync) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:41:30 PM com.apple.launchd[72] ([0x0-0x13a13a].com.apple.AddressBook.sync) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:41:30 PM com.apple.launchd[72] ([0x0-0x13a13a].com.apple.AddressBook.sync) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:42:34 PM com.apple.launchd[72] ([0x0-0x13b13b].Microsoft/com.microsoft.Messenger) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:42:34 PM com.apple.launchd[72] ([0x0-0x13b13b].Microsoft/com.microsoft.Messenger) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:42:47 PM com.apple.launchd[72] ([0x0-0x13d13d].Microsoft/com.microsoft.Messenger) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:42:47 PM com.apple.launchd[72] ([0x0-0x13d13d].Microsoft/com.microsoft.Messenger) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:43:10 PM com.apple.launchd[72] ([0x0-0x13f13f].org.mozilla.firefox) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:43:10 PM com.apple.launchd[72] ([0x0-0x13f13f].org.mozilla.firefox) Bug: launchdcorelogic.c:6483 (23459):35: jr->p
    3/31/08 4:45:19 PM FileSyncAgent[157] MKCOL /.FileSync (FAILED), httpStatusCode:405, errorType:100, transactionState:5, txnId:8B4BF403-F180-4183-BAB2-FC7D9CAA7356, auto-retries=0, manual-retries=0
    3/31/08 4:47:59 PM org.cups.cups-lpd[678] launchproxy[678]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.198 on port: 1516
    3/31/08 4:48:46 PM org.cups.cups-lpd[684] launchproxy[684]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.196 on port: 2575
    3/31/08 4:48:46 PM firefox-bin[683] An uncaught exception was raised
    3/31/08 4:48:46 PM firefox-bin[683] couldn't fork: errno 35
    3/31/08 4:48:46 PM firefox-bin[683] * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'couldn't fork: errno 35'
    3/31/08 4:48:46 PM firefox-bin[683] Stack: (
    2450387531,
    2447470843,
    2450386987,
    2450387050,
    2423494429,
    2423491241,
    50670,
    11283,
    22781,
    10488,
    10366,
    10137
    3/31/08 4:48:46 PM com.apple.launchd[72] (com.apple.ReportCrash) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:48:46 PM com.apple.launchd[72] (com.apple.ReportCrash) Throttling respawn: Will start in 10 seconds
    3/31/08 4:48:56 PM com.apple.launchd[72] (com.apple.ReportCrash) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 4:55:10 PM loginwindow[34] Could not find image named 'NSApplication'.
    3/31/08 4:55:10 PM com.apple.loginwindow[34] 2008-03-31 16:55:10.886 loginwindow[34:20b] Could not find image named 'NSApplication'.
    3/31/08 4:55:10 PM loginwindow[34] Could not find image named 'hgfhfg'.
    3/31/08 4:55:10 PM com.apple.loginwindow[34] 2008-03-31 16:55:10.888 loginwindow[34:20b] Could not find image named 'hgfhfg'.
    3/31/08 5:08:02 PM org.cups.cups-lpd[694] launchproxy[694]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.198 on port: 1822
    3/31/08 5:08:50 PM org.cups.cups-lpd[699] launchproxy[699]: /usr/libexec/cups/daemon/cups-lpd: Connection from: 192.168.0.196 on port: 2681
    3/31/08 8:26:47 PM com.apple.launchd[72] (com.apple.syncservices.SyncServer) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 8:26:47 PM com.apple.launchd[72] (com.apple.ReportCrash) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 8:26:47 PM com.apple.launchd[72] (com.apple.quicklook) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 8:26:47 PM com.apple.launchd[72] (com.apple.PreferenceSyncAgent) fork() failed, will try again in one second: Resource temporarily unavailable
    3/31/08 8:26:47 PM com.apple.launchd[72] (com.apple.netauth.useragent) fork() failed, will try again in one second: Resource temporarily unavailable
    So does that mean that Mail is hanging on something and causing all of the problems?
    Any ideas?
    Lars

  • I cannot open Pages from the app or from a saved document on the desk top.  I get an error: "The application Pages cannot be opened  -1712"  Any suggestions?

    I cannot open Pages from the app or from a saved document on the desk top.  I get an error: "The application Pages cannot be opened  -1712"  Any suggestions?

    The following previous discussion has a solution that worked for a variety of people with the -1712 error on a variety of applications and may help: The application Safari can't be opened -1712

  • Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Edit

    Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Editor works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X".
    I have since uninstalled and reinstalled the app, but get the same error message.

    Which version of OS X do you have? It's not clear from your post whether "installed an upgrade" means you just installed PSE 13 as an upgrade or you installed an update to PSE 13, like ACR 9 or 13.1. Please clarify.

  • Adobe AIR Error Message - Application Descriptor

    Upon starting my computer I keep getting an error message for Adobe AIR stating, "Application descriptor could not be found for this application. Try re-installing or contacting the publisher for assistance." I have uninstalled and re-installed Adobe AIR THREE times and have restared my computer with each new re-installation. The error message is still showing. Please let me know how to resolve this issue.
    Thank you.

    I successfully gotten rid of it for WINDOW 7.
    This can be caused by some error/conflict with Air Adobe and any start-up programs scheduled to "open" "activated" at the first appearance of your desktop.
    To find out what programs are running at the startup:
         Click "Start"
         type "msconfig" in the search engine at the bottom
         click on "msconfig" icon appearing on top
         a pop-up window titled "System Configuration" will appear
         Click on "Startup" tab
         At this point, I unclicked unnecessary programs that are not crucial in operating my computer.
         Click "apply" or "Ok"
         another pop-up window will ask you if you want to restart your computer.
    I am not sure if I solved the "conflict' but certainly got rid of the annoying error message by turning off some "unnecessary" software that was automatically set to start as the computer booted.

  • I need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009". and after they said "we could not complete your request. There was an error in the App Store. Please try again later (nul

    i need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009".
    and after they said "we could not complete your request. There was an error in the App Store. Please try again later (null)".
    COMPUTER DETAILS: MacBook Pro 13-inch, Mid 2012 OS X Version 10.9.5; Processor 2,5GHz Intel Core i5; Memory 4 Go 1600 MHz DDR3.
    Thanks beforehand!!!

    Error
    what is error code 1009?

Maybe you are looking for

  • Dynamic Variable Package Installs (Not Applications)

    My Apps install fine, but I'm not sure where to look to see if all my Packages are as I'm not finding much in the smsts.log. I believe I have everything configured fine, as its similar to my applications OSD task just with a different base variable.

  • TS1389 Album says it needs authorization, but then says that this computer is already authorized.

    Album says it needs authorization, but then it says that this computer is already authorized. I have logged in and out. Deauthorized and authorized my computer again.

  • Org Unit Asssignment for Activities

    Hi,     We have recently upgraded from CRM 4.0 --> 5.0 SP 11, for certain individuals who now create data in the mobile applicatio and conntrans it ,  the Organizational Unit is not being assigned to the activities that they are creating. The Sales O

  • Designer - Writing Reports

    I want to write a report (or simply an SQL statement) that will list all entities and relations, and which ER Diagrams they are included on. Can anyone tell me (a) where in the Designer repository I can find this info or (b) where I can find document

  • How to undo carriage returns?

    Hi, I send char(10) and char(13) to my output stream to move to the next line. If the user presses the backspace, char(8), I have to undo what he has typed. Undoing characters is not a problem as long as the user has not moved to the next line (no ca