Air update - initial content not found

I had a working AIR-Project using this configuration:
Win 7 64 bit
Flex SDK 4.0.0
AIR 1.5.3
However, I needed to include a C++ library in the project and therefore update to AIR 2.0 or newer (at least I was told AIR 1.5 does not support calling native processes or C++ libraries).
I tried updating both, the AIR version only or the Flex SDK including a newer AIR version - however, all update atempts led to the following error:
Process terminated unexpectedly.
initial content not found
Launch command details:  "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\bin\adl.exe" -runtime "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\runtimes\air\win" "<root>\TestAirVersion\bin-debug\TestAirVersion-app.xml" "<root>\TestAirVersion\bin-debug"
As you can see the above error occured using Flex SDK 4.5.0 and AIR 2.5.0 - but a similar error is thrown by any configuration above AIR 2.0 (both in Flash Builder or by calling the ADL manually).
The project descriptor was updated (<application xmlns="http://ns.adobe.com/air/application/2.5">) and the SDKs were put in the Adobe Flash Builder4\sdks\xxx directory - did I miss something? (the project above is an empty test-project!)
I also discovered that the AIR runtimes 2.0 and later include a Template.exe and a template.msi in the \Resources\ directory. If I run these, I get a
Source file not found: C\ <...> \Resources\REPLACE. Verify that the file exists and that you can access it.
Error (template.msi) - Template.exe leads to an invalid-application error - are these supposed to work?
Thanks in advance!

I had a working AIR-Project using this configuration:
Win 7 64 bit
Flex SDK 4.0.0
AIR 1.5.3
However, I needed to include a C++ library in the project and therefore update to AIR 2.0 or newer (at least I was told AIR 1.5 does not support calling native processes or C++ libraries).
I tried updating both, the AIR version only or the Flex SDK including a newer AIR version - however, all update atempts led to the following error:
Process terminated unexpectedly.
initial content not found
Launch command details:  "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\bin\adl.exe" -runtime "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\runtimes\air\win" "<root>\TestAirVersion\bin-debug\TestAirVersion-app.xml" "<root>\TestAirVersion\bin-debug"
As you can see the above error occured using Flex SDK 4.5.0 and AIR 2.5.0 - but a similar error is thrown by any configuration above AIR 2.0 (both in Flash Builder or by calling the ADL manually).
The project descriptor was updated (<application xmlns="http://ns.adobe.com/air/application/2.5">) and the SDKs were put in the Adobe Flash Builder4\sdks\xxx directory - did I miss something? (the project above is an empty test-project!)
I also discovered that the AIR runtimes 2.0 and later include a Template.exe and a template.msi in the \Resources\ directory. If I run these, I get a
Source file not found: C\ <...> \Resources\REPLACE. Verify that the file exists and that you can access it.
Error (template.msi) - Template.exe leads to an invalid-application error - are these supposed to work?
Thanks in advance!

Similar Messages

  • Initial content not found

    Hi,
    I try to use FlexUnit 4 to test an air application. I use Maven antrun plugin to compile and run test
    code since flex-mojos do not support FlexUnit 4 yet.
    My antrun plugin is as follows,
               <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <version>1.3</version>
                    <executions>
                        <execution>
                            <id>flexunit4-test-compile</id>
                            <phase>test-compile</phase>
                            <configuration>
                                <tasks>
                                    <!-- You can set this directly so mxmlc will work correctly, or set FLEX_HOME as an environment variable and use as below -->
                                    <!--property name="FLEX_HOME" location="${env.FLEX_HOME}"/-->
                                    <property name="FLEX_HOME" value="${flex.home}"/>
                                    <taskdef resource="flexTasks.tasks"/>
                                    <taskdef resource="net/sf/antcontrib/antlib.xml"
                                             classpathref="maven.compile.classpath"/>
                                    <!-- Compile TestRunner.mxml as a SWF -->
                                    <mxmlc file="${project.build.testSourceDirectory}/TestRunner.mxml"
                                           output="${project.build.testOutputDirectory}/TestRunner.swf">
                                        <source-path path-element="${project.build.sourceDirectory}"/>
                                        <source-path path-element="${project.build.testSourceDirectory}"/>
                                        <load-config filename="${FLEX_HOME}/frameworks/air-config.xml"/>
                                        <compiler.library-path dir="${basedir}/target/dependency" append="true">
                                            <include name="*.*"/>
                                        </compiler.library-path>
                                        <compiler.verbose-stacktraces>true</compiler.verbose-stacktraces>
                                        <compiler.headless-server>true</compiler.headless-server>
                                    </mxmlc>
                                </tasks>
                            </configuration>
                            <goals>
                                <goal>run</goal>
                            </goals>
                        </execution>
                        <execution>
                            <id>flexunit4-test-run</id>
                            <phase>test</phase>
                            <configuration>
                                <tasks>
                                    <!-- Execute TestRunner.swf as FlexUnit tests and publish reports -->
                                    <!--
                                       Flex-Mojos will update the FlashPlayer trusted cache for you automagically so you don't have to have flexunit do so.
                                       Also haltonfailure should be marked true to keep with the convention in Maven that the build fails if tests fail.
                                    -->
                                    <taskdef resource="flexUnitTasks.tasks"/>
                                    <exec executable="${flex.home}/bin/adl" failonerror="false" osfamily="unix">
                                        <arg value="${project.build.testOutputDirectory}/TestRunner-app.xml"/>
                                        <arg value="--"/>
                                        <arg value="${project.build.testOutputDirectory}"/>
                                    </exec>
                                    <exec executable="${flex.home}/bin/adl.exe" failonerror="false" osfamily="windows">
                                        <arg value="${project.build.testOutputDirectory}/TestRunner-app.xml"/>
                                        <arg value="--"/>
                                        <arg value="${project.build.testOutputDirectory}"/>
                                    </exec>
                                    <!--flexunit swf="${project.build.testOutputDirectory}/TestRunner.swf"
                                              toDir="${project.build.directory}/surefire-reports"
                                              haltonfailure="true"
                                              verbose="true"
                                              localTrusted="false"/-->
                                </tasks>
                            </configuration>
                            <goals>
                                <goal>run</goal>
                            </goals>
                        </execution>
                    </executions>
                    <dependencies>
                        <!-- You will need to manually install all of the artifacts below in your local Maven repository or shared repository if you have one -->
                        <dependency>
                            <groupId>com.adobe.flex</groupId>
                            <artifactId>flexTasks</artifactId>
                            <version>${flex-sdk.version}</version>
                        </dependency>
                        <dependency>
                            <groupId>org.flexunit</groupId>
                            <artifactId>anttasks</artifactId>
                            <version>4.0.0</version>
                        </dependency>
                    </dependencies>
                </plugin>
    TestRunner.swf is built at target/test-class and I also have TestRunner-app.xml in the same directory where I have
            <content>TestRunner</content>
    The problem is that when I try to run a test, I keep getting the following error
    [exec] initial content not found
    I really appreciate if someone could shred some light on this problem.
    Thanks,
    John

    Hi Brian,
    Thanks for your reply!
    I've tried building with every version of Ant and FlexUnit I could find, including the latest beta... same problem every time. Though I haven't tried using a different Flex SDK - my project uses 3.2.0. Could that be causing problems? All the FlexUnit versions I can find are for 3.5 or later.
    Below is the full console output from my build script (using the flexunit task rather than exec). As for the descriptor file, if you mean the one created by the FlexUnit task, I'm afraid I have nothing to post... since the error is that the task isn't able to create it in the first place. (Or if it is being created, it sure isn't anywhere I can find it - see below for screenshot of project contents.) I can post the descriptor I wrote myself if that will be of any use - just let me know.
    Thank you so much for your help!
    Helen
    -------------- CONSOLE OUTPUT ---------------
    Apache Ant version 1.7.1 compiled on June 27 2008
    Buildfile: C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\build.xml
    parsing buildfile C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\build.xml with URI = file:/C:/build/dev/helen_ant/apps/flex_dev/flex/acdc/build.xml
    Project base dir set to: C:\build\dev\helen_ant\apps\flex_dev\flex\acdc
    [antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
    Build sequence for target(s) `all' is [clean-swf, build-swf, clean-installer, compile-test, test-flex, build-installer, all]
    Complete build sequence is [clean-swf, build-swf, clean-installer, compile-test, test-flex, build-installer, all, test-reports-flex, final-clean, ]
    clean-swf:
       [delete] Deleting C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\acdc.swf
    build-swf:
    dropping C:\C from path as it doesn't exist
    dropping C:\C from path as it doesn't exist
        [mxmlc] Loading configuration file C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\frameworks\air-config.xml
        [mxmlc] C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\acdc.swf (2391282 bytes)
    clean-installer:
    compile-test:
    dropping C:\C from path as it doesn't exist
    dropping C:\C from path as it doesn't exist
        [mxmlc] Loading configuration file C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\frameworks\air-config.xml
        [mxmlc] C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\src\acdcunittest.swf (2744014 bytes)
    test-flex:
    [flexunit] Validating task attributes ...
    [flexunit] Generating default values ...
    [flexunit] Using the following settings for the test run:
    [flexunit]     FLEX_HOME: [C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0]
    [flexunit]     haltonfailure: [false]
    [flexunit]     headless: [false]
    [flexunit]     display: [99]
    [flexunit]     localTrusted: [true]
    [flexunit]     player: [air]
    [flexunit]     port: [1024]
    [flexunit]     swf: [C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\src\acdcunittest.swf]
    [flexunit]     timeout: [60000ms]
    [flexunit]     toDir: [C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\unit_test_reports\xml]
    [flexunit] Setting up server process ...
    [flexunit] Starting server ...
    [flexunit] OS: [Windows]
    [flexunit] Opening server socket on port [1024].
    [flexunit] Waiting for client connection ...
    [flexunit] Launching player:
         [null] Executing 'C:\Program Files\Adobe\Flex Builder 3\jre\bin\java.exe' with arguments:
         [null] '-jar'
         [null] 'C:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\lib\adt.jar'
         [null] '-version'
         [null]
         [null] The ' characters around the executable and arguments are
         [null] not part of the command.
         [null] Output redirected to property: AIR_VERSION
    [flexunit] Found AIR version: 2.0
    BUILD FAILED
    C:\build\dev\helen_ant\apps\flex_dev\flex\acdc\build.xml:97: Error launching the test runner.
        at org.flexunit.ant.tasks.TestRun.run(Unknown Source)
        at org.flexunit.ant.tasks.FlexUnitTask.execute(Unknown Source)
        at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
        at org.apache.tools.ant.Task.perform(Task.java:348)
        at org.apache.tools.ant.Target.execute(Target.java:357)
        at org.apache.tools.ant.Target.performTasks(Target.java:385)
        at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
        at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
        at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefau ltExecutor.java:32)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    Caused by: Error launching the test runner.
        at org.flexunit.ant.tasks.TestRun.launchTestSuite(Unknown Source)
        ... 18 more
    Caused by: Could not create application descriptor
        at org.flexunit.ant.launcher.commands.player.AdlCommand.createApplicationDescriptor(Unknown Source)
        at org.flexunit.ant.launcher.commands.player.AdlCommand.launch(Unknown Source)
        at org.flexunit.ant.launcher.FlexUnitLauncher.runTests(Unknown Source)
        ... 19 more
    --- Nested Exception ---
    Error launching the test runner.
        at org.flexunit.ant.tasks.TestRun.launchTestSuite(Unknown Source)
        at org.flexunit.ant.tasks.TestRun.run(Unknown Source)
        at org.flexunit.ant.tasks.FlexUnitTask.execute(Unknown Source)
        at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
        at org.apache.tools.ant.Task.perform(Task.java:348)
        at org.apache.tools.ant.Target.execute(Target.java:357)
        at org.apache.tools.ant.Target.performTasks(Target.java:385)
        at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
        at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
        at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefau ltExecutor.java:32)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    Caused by: Could not create application descriptor
        at org.flexunit.ant.launcher.commands.player.AdlCommand.createApplicationDescriptor(Unknown Source)
        at org.flexunit.ant.launcher.commands.player.AdlCommand.launch(Unknown Source)
        at org.flexunit.ant.launcher.FlexUnitLauncher.runTests(Unknown Source)
        ... 19 more
    --- Nested Exception ---
    Could not create application descriptor
        at org.flexunit.ant.launcher.commands.player.AdlCommand.createApplicationDescriptor(Unknown Source)
        at org.flexunit.ant.launcher.commands.player.AdlCommand.launch(Unknown Source)
        at org.flexunit.ant.launcher.FlexUnitLauncher.runTests(Unknown Source)
        at org.flexunit.ant.tasks.TestRun.launchTestSuite(Unknown Source)
        at org.flexunit.ant.tasks.TestRun.run(Unknown Source)
        at org.flexunit.ant.tasks.FlexUnitTask.execute(Unknown Source)
        at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
        at org.apache.tools.ant.Task.perform(Task.java:348)
        at org.apache.tools.ant.Target.execute(Target.java:357)
        at org.apache.tools.ant.Target.performTasks(Target.java:385)
        at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
        at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
        at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefau ltExecutor.java:32)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
        at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    Total time: 1 minute 31 seconds

  • Process terminated unexpectedly.   initial content not found

    I have been using Flash Builder 4.6 for awhile and today after running  the application serveral times over 4 hours i get this when I try to run it I get "Launch Failed"  with the following message:
    Process terminated unexpectedly.
    initial content not found
    Launch command details:  "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\bin\adl.exe" -runtime "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\runtimes\air\win" -profile mobileDevice -screensize 480x775:480x800 -XscreenDPI 217 -XversionPlatform AND "C:\Users\Kim64\Adobe Flash Builder 4.6\CleanManager\bin-debug\CleanManager-app.xml" "C:\Users\Kim64\Adobe Flash Builder 4.6\CleanManager\bin-debug"
    I'm unable to run this application, but I can run other applications in Flash Builder 4.6
    Thanks for any help.
    Kim

    I found the problem later, it was one line that had some wrong code that did not show the red circle.
    My code was in a database event where I didn't add the ToString;

  • Lauch failed (initial content not found)

    Hi all,
    I've run in to a nasty error:
    I have an MXML file which indicates an error next to it's filename (the little x in the red box). However, when I open it Flash builder does not indicate an error on any of it's lines. Removing newly written content and saving did not help.
    After a while trying 'stuff' I tried the "Clean..." option from the project menu. If I do so, Flash builder no longer shows the error until I try to run or debug the app. However... Flash Builder fails to start the app at all now .
    It first states the project contains errors and If I opt to proceed building Flash Builder now gives the error:
    "Launch Failed"
    "Process terminated unexpectedly
    Initial content not found
    Launch command details {some details on which files etc.}"
    It renders the project useless since I cannot test anything. Anyone any bright ideas?
    Kind regards,
    Manno

    Hi Anirudh,
    Thanks for the tips.
    I should have posted but i already figuredit out. There was à conflict with an existing flash class even though in the offending line full path to the class was defined. Most annoying was that there was no indication in the gutter.  I'll see if i can reproduce it in a barebones file to post it here.
    Kind regards
    Manno

  • Shared Services database content not found in the specified database - EPM

    I installed three VM machines (Workstation) for the following on Windows 2003 OS:
    VM1 : Oragle DB 11g, Shared Services. Workspace
    VM2 : Financial Management, EPMA, Calc Manager
    VM3 : Microsoft Active Directory
    I have configured Database and Shared services successfully and all machines talk to one another.
    Also, I created the appropriate table spaces for the Hyperion products with the right access on the database. And, I am able to connect from the client (VM 2 to the Database VM 1)using SQLplus.
    When I tried to configure Financial Management, using the EPM System Configurator and put in the following values:
    Database Type: Oracle
    Server: VMDatabase (Name of VM1)
    Port: 1521
    SID ORCL
    Username: HFM
    password: *********
    It returned the error message: "*Shared Services database content not found in the specified database*"
    Can someone please help on what I need to check, Please!?
    Thanks for your time.
    K

    Hi,
    Information from Oracle Support:
    Shared Services database content not found in specified database
    Cause
    There is a flag in the shared services repository that indicates the shared services database is to be used as a registry. If that flag is not set, the configtool will not re-configure the database as a shared services repository.
    Solution
    Note: Make sure the Shared Services repository is backed up before doing any Shared Services Registry changes.
    The registry flag isRegistryDB must exist and be set to true on the Shared Services Database Connection.
    epmsys_registry.bat VIEW DATABASE_CONN
    Find the shared services database registry entry. The entry in bold will be missing. The italicized item is the 'unique_id' referenced later (different in each installation).
    COMPONENT - 3
    NAME - Database:ORCL:HSS
    ID - +11d1def534ea1be07ad8eb3012d2e3d310a7ff4+
    TYPE - DATABASE_CONN
    HOST - Database
    HYPERION HOME - /home/hypadmin/Oracle/Middleware/EPMSystem11R1
    PROPERTIES -
    isRegistryDB = true
    dbUserName = HSS
    dbJDBCDriverProperty = oracle.jdbc.OracleDriver
    dbJdbcUrl = jdbc:oracle:thin:@Database:1521:ORCL
    registryDatasource = EPMSystemRegistry
    registryDatasourceJNDI = jdbc/EPMSystemRegistry
    dbName = ORCL
    version = 9.5.0.0
    dbPort = 1521
    instance_home = /home/hypadmin/Oracle/Middleware/user_projects/epmsystem1
    dbPassword = GABaMyyplja+wLNCmLs8ag==
    Run the following update to populate the isRegistryDB flag with the unique_id being the ID field used in the DATABASE_CONN registry entry.
    epmsys_registry.bat addproperty #unique_id/@isRegistryDB true
    Repeat the epmsys_registry VIEW DATABASE_CONN to make sure the flag is now set.
    You will be able to reconfigure the shared services repository.
    You can mark it as Answer/Helpful if you feel so.
    Cheers!
    J

  • Unable to deploy custom Tile because of error "tile content not found in archive"

    Hi All,
    I have developed a custom tile in Flash Builder. But when deploying this tile in a catalog via ant script am getting following error. I am running Mosaic on my own Tomcat server version 6.0.29.  I have followed steps given in http://help.adobe.com/en_US/LiveCycleMosaic/9.0/getStart/WSe851854fd1e0856a-2169537a128406 c16bb-8000.html#WSe851854fd1e0856a7bf09eed1284549b445-7ff8
    ----------------------------start of error while running ant script--------------------------
    <crx:Response timestamp="2010-09-19T20:20:06.452-05:00" method="POST" result="failure" request="/mosaic/catalogs/ContactManagementCatalog" xmlns:crx="http://ns.adobe.com/Mosaic/CRXTypes/1.0/">
        <crx:Error code="CAT_E40000">
            <crx:Message>Error importing catalog {} : {}.</crx:Message>
            <crx:Key position="0">ContactManagementCatalog</crx:Key>
            <crx:Key position="1">tile content not found in archive for tile ContactListTile</crx:Key>
            <crx:StackTrace>com.adobe.livecycle.mosaic.common.MosaicServerException: Error importing catalog [ContactManagementCatalog, tile content not found in archive for tile ContactListTile] : {}.
    at com.adobe.livecycle.mosaic.service.rest.catalogservice.CatalogServiceImportResourceRestHa ndler$CatalogServiceAppModelImportFilter.terminate(CatalogServiceImportResourceRestHandler .java:180)
    at com.adobe.livecycle.mosaic.appmodel.impl.AppModelFacade.importArchive(AppModelFacade.java :132)
    at com.adobe.livecycle.mosaic.service.rest.catalogservice.CatalogServiceImportResourceRestHa ndler.handleRequest(CatalogServiceImportResourceRestHandler.java:84)
    at com.adobe.livecycle.rest.RestRequestRouter.routeRequest(RestRequestRouter.java:19)
    at com.adobe.livecycle.rest.RestServlet.doAction(RestServlet.java:46)
    at com.adobe.livecycle.rest.RestServlet.doPost(RestServlet.java:37)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    ... 40 more
    </crx:StackTrace>
        </crx:Error>
    </crx:Response>
    ----------------------------end of error while running ant script--------------------------
    ----------------------------start of Zip file content--------------------------
    ContactManagementCatalog.zip
    tiles (Folder)
    descriptor.xml
    ContactListTile(Folder)ContactListTile.swf
    ----------------------------End of Zip file content--------------------------
    -----------------------------start descriptor.xml-------------------------------
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <catalog:Catalog name="ContactManagementCatalog" label="Contact Management Catalog"
        xmlns:shell="http://ns.adobe.com/Mosaic/Shell/1.0/"
        xmlns:catalog="http://ns.adobe.com/Mosaic/Catalog/1.0/"
        xmlns:tile="http://ns.adobe.com/Mosaic/Tile/1.0/"
        xmlns:view="http://ns.adobe.com/Mosaic/View/1.0/"
        xmlns:crx="http://ns.adobe.com/Mosaic/CRXTypes/1.0/">
        <crx:Metadata>
            <crx:Description>Contact Management Catalog</crx:Description>
        </crx:Metadata>
        <catalog:Categories>
            <catalog:Category name="Contact_Management_Category"/>
        </catalog:Categories>
       <tile:TileClassList>
            <tile:TileClass label="Contact List"
            name="ContactListTile"
            initialWidth="100%"
            catalog="ContactManagementCatalog"
            initialHeight="100%" height="100%" width="100%">
            <crx:Metadata>
            <crx:Description>Contact List</crx:Description>
            <crx:Category>
            Contact_Management_Category
            </crx:Category>
            </crx:Metadata>
            <tile:Content loadAs="default"
            contentType="application/x-shockwave-flash"
            uri="/mosaic/catalogs/ContactManagementCatalog/tiles/ContactListTile/content" />
            </tile:TileClass>
       </tile:TileClassList>
    </catalog:Catalog>
    -----------------------------End descriptor.xml-------------------------------

    Thanks for the Reply.
    I was getting this error because my eclipse development environment was pointing to standalone tomcat shipped with LiveCycle Mosaic and i was using eclipse to start the server. I was able to deploy same catalog zip on fresh tomcat (v6.0.29) instance downloaded from apache.
    But now i am having new issue and not able to login using Mosaic AIR client as it gives me "Error 500". On Tomcat server i can see following stack trace.
    ----------------Start of the error-----------------------
    Sep 21, 2010 12:10:34 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    java.lang.IllegalAccessError: tried to access method com.adobe.livecycle.mosaic.common.impl.BeanLookupMixin.<init>()V from class org.apache.jsp.login_jsp
    at org.apache.jsp.login_jsp._jspService(login_jsp.java:58)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:343)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(Filter SecurityInterceptor.java:109)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(Filt erSecurityInterceptor.java:83)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTran slationFilter.java:97)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManageme ntFilter.java:100)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(An onymousAuthenticationFilter.java:78)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFil ter(SecurityContextHolderAwareRequestFilter.java:54)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCac heAwareFilter.java:35)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(Ba sicAuthenticationFilter.java:177)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.do Filter(AbstractAuthenticationProcessingFilter.java:188)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter .java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(Securi tyContextPersistenceFilter.java:79)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChain Proxy.java:355)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:149)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy .java:237)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java: 167)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:588)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
    at java.lang.Thread.run(Thread.java:619)
    ----------------Start of the error-----------------------
    Also let me know if you want me to start new thread for this error.

  • Shared Services database content not found in the specified database."

    Trying to configure Version 11 and get the error: "Shared Services database content not found in the specified database". Relevant details on my issue as below:
    - I'm running Windows 7 and SQL Server 2008 on my local machine.
    - I did have a previous installation of Hyperion 9 on my machine which I uninstalled before installing 11. However, after uninstalling, I could still see the Hyperion EPM (empty folders) in my "All Programs", which I manually deleted.
    - Now I've installed Essbase 11, and for now am trying to configure Hyperion Foundation only (Common Settings and Configure Database is greyed out, I checked deploy to applicaiton server. I left the calculation manager and workspace blank).
    - The next window is the "Configure Shared Services and Database Registry" option. I chose "Perform 1st time Configuration of Shared Services Database". When I enter the relevant details, I got the error mentioned above. My error log file entries are as below:
    (Jul 14, 2010, 02:10:50 PM), com.hyperion.hit.registry.Registry, ERROR, Exception when trying to store the component
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:546)
         at java.util.ArrayList.get(ArrayList.java:321)
         at com.hyperion.hit.registry.JDBCRegistryUtils.storeComponent(JDBCRegistryUtils.java:612)
         at com.hyperion.hit.registry.JDBCRegistryUtils.saveComponent(JDBCRegistryUtils.java:166)
         at com.hyperion.hit.registry.Registry.storeComponent(Registry.java:2749)
         at com.hyperion.hit.registry.Registry.getInstance(Registry.java:353)
         at com.hyperion.config.wizard.impl.RegistryWizardRule.validate(RegistryWizardRule.java:66)
         at com.hyperion.cis.config.wizard.adapter.WizardFormAdapterPanel.queryEnter(WizardFormAdapterPanel.java:80)
         at com.installshield.wizard.awt.AWTWizardUI.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.swing.SwingWizardUI.currentBeanChanged(SwingWizardUI.java:842)
         at com.installshield.wizard.StandardWizardListener.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1822)
    (Jul 14, 2010, 02:11:08 PM), com.hyperion.cis.config.wizard.adapter.WizardFormAdapterPanel, ERROR, Shared Services database content not found in the specified database.
    (Jul 14, 2010, 02:11:58 PM), com.hyperion.cis.config.wizard.adapter.WizardFormAdapterPanel, ERROR, Shared Services database content not found in the specified database.
    I believe version 11 supports Windows 7, but correct me if I'm wrong. What's going on here? Any suggestions on what I should try ?

    Actually when I installed version 9, I never got around to configuring shared services and so never had a shared services database in SQL Server to begin with.
    One question about the registry entry you told me to delete: The (HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions) which currently exists would be the entry for version 11 which I have installed right? It's the only entry for Hyperion Solutions in the registry.
    After uninstalling versino 9, C:/hyperion still existed on my machine (though it didnt have all the subfolders which it did prior to uninstalling), so I manually deleted it before installing verison 11.
    I wouldn't mind installing it on a compatible version of windows, but the thing is that at this point this is all that is available to me.
    and I don't have any other oracle products.
    thanks....

  • Page_jsp content not found exception ..

    though I was able to resolve this as a quick-fix by installing a new cq instance,
    I still donot know the root cause. This was occuring in OTB Geometrixx application in author instance ..
    reading something like " org.apache.jsp.libs.foundation.components.primary.cq.Page.page_jsp" content
    not found exception pointing to Page.jsp in  foundation/components and Proxy.jsp referenced in Page.jsp.
    Has anyone faced this issue and aware of the ' root cause' behind it. (Sorry the logs are gone now)
    Regards
    V

    I too am having the same problem with Weblogic 7.0.
              Did anyone get the solution to this ?
              

  • Content Not Found- purchased ATV movie

    Why would a movie purchased on ATV say "content not found" when it is in my menu.

    Welcome to the  Discussion Forums.
    Purchased movies are transferred back to itunes, where they are then streamed to the tv. It may be that itunes is unable to find the movie, do you have your library on an external drive.

  • Apple tv says content not found.

    After I synced my apple tv to itunes I tried to watch some podcasts while some play others come up with content not found even though the podcasts had successfully synced with itunes I have podcasts sorted by show

    The podcasts that don't play probably haven't synced, and are listed as available as they would have been available to automatically stream (unless you've checked 'Show only synced items' in iTunes under the AppleTV device tabs) from iTunes.
    If they are not available now, either the connection with itunes was lost, iTunes closed and AppleTV still thonks it's open, or files actually no longer where they're expected to be eg on an unplugged external drive.

  • H61I-E35 (B3) :BIOS Updating ________ File not Found

    Hello.
    Yesterday I was flashing my BIOS from Version    5.2 to Version    6.0.
    I have downloaded 7677v60.zip file, extracted it to F:\7677v60\E7677v60 (my usb stick)
    I have used front USB port.
    I have launched E7677v60.exe from F:\7677v60\E7677v60 folder and wait installation to complete. There were notification (Do not unplug your USB stick)
    Windows where restarted, then computer started and after some time (approximately 5 - 7 seconds) computer restarted.
    After second start, I have a message: BIOS  Updating ________________ File not found.
    I have tried to shutdown, put my usb stick in rear ports, but it make nothing.
    So, please help, how to Update or How to recover my BIOS on motherboard?
    And, why this appeared ( I don't unplugged my USB stick all the time of setup and restart)?

    Quote from: Freaker on 01-June-12, 16:12:20
    Hello.
    Yesterday I was flashing my BIOS from Version    5.2 to Version    6.0.
    I have downloaded 7677v60.zip file, extracted it to F:\7677v60\E7677v60 (my usb stick)
    I have used front USB port.
    I have launched E7677v60.exe from F:\7677v60\E7677v60 folder and wait installation to complete. There were notification (Do not unplug your USB stick)
    Windows where restarted, then computer started and after some time (approximately 5 - 7 seconds) computer restarted.
    After second start, I have a message: BIOS  Updating ________________ File not found.
    I have tried to shutdown, put my usb stick in rear ports, but it make nothing.
    So, please help, how to Update or How to recover my BIOS on motherboard?
    And, why this appeared ( I don't unplugged my USB stick all the time of setup and restart)?
    is similar, but the model I have H61M-P21 (B3)
    have a file on a flash drive "biosEIVB.BIN" of about 4 MB, but still receive the message "File not found"
    Help me please

  • Adobe Air Error - Initial Content Could Not Be Found

    Hi,
    I'm using BBC iplayer desktop and trying to download programmes.  I keep getting an Adobe Air Error saying 'initial content could not be found for this application'.  I've uninstalled and reinstalled Adobe Air but keep getting this message.  Any ideas?
    Thanks,
    Maggie

    I have After Effects CS4 and my operating system Snow Leopard.
    When I mean it doesn't work, I mean it won't load up when after it pulls up that error message. I'll click on the After Effects icon, it'll load as usual, then it'll pull up that error message.
    After Effects warning: a compressor used in an output module template could not be found. The animation compressor will be used instead. ( 44 :: 18 )
    I click okay, it closes, and then I have an error saying that Adobe After Effects has crashed.

  • Business content not found for  CRM5.0 Datasources

    Hello,
    I cannot find the business content for the following datasources of CRM 5.0.
    We are on BW 3.5 version and i am unable to find the business content for the below.Did anyone face this problem and is there any solution or we need to build custom info objects and ODS.
    Master data:
    0CRM_LI_CAT_TEXT
    0CRM_LI_ID_ATTR
    0CRM_LI_ID_TEXT
    NOTE: relevant info objects not found.
    Transaction data:
    0CRM_MLI
    Thanks in advance,
    Rao

    HI
    I have checked in my system also. 0CRM_C08 This InfoCube contains date about the CRM activity items. It is based on the Activity Items ODS object (technical name: 0CRM_ACTI).
    As you mentioned  like that The cube is not based on the another cube(0PH_C01). And it is not available in Metadata Repository also.
    May be you are looking in wrong way. Please check it once again.
    Any furhter questions are there please let me know.
    Thanks & Regards,
    Nagaraju.V

  • Native Extension for AIR publishing error : framework not found

    Hello,
    I'm trying to build an iOS app using native extensions for AIR, but when I publish, I've an error message saying : framework not found
    I tried with this ANE for GameCenter integration : https://github.com/StickSports/ANE-Game-Center
    it says " ld: framework not found GameKit "
    Same problem with GREE Platform SDK for AIR :
    https://docs.developer.gree.net/en/globaltechnicalspecs/#sdkforair
    it says " ld: framework not found CoreTelephony "
    The thing is that these frameworks are already included, I guess.
    I'm using flash cs6 on mac, and I've included the path to iOS SDK in the publishing settings.

    Are you using the ANE from there or are you recompiling the ANE at your end?
    If you are recompiling, please make sure that you are using the platform.xml file they have provided.
    If you are using their precompiled ANEs, probably, the path to iOS SDK is not correct. It should be upto the folder iPhoneOSx.y.sdk.

  • [SOLVED] Catalyst-dkms Update Fails (404 Not Found)

    It seems there's some mirror problems with this file... on every mirror I've tried.
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.us.leaseweb.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from hive.ist.unomaha.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.cicku.me : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.rit.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.kernel.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from cake.lib.fit.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.tuxdroid.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.bytemark.co.uk : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from miroir.ezvan.fr : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp5.gwdg.de : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.openlabto.org : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.surlyjake.com : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.selfnet.de : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.datacenter.by : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirrors.uk2.net : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.liquidweb.com : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mir.archlinux.fr : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.apt-get.eu : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.ece.vt.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.jaist.ac.jp : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirror.dkm.cz : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from fruk.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.mocker.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.archlinux.no : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirror.kangaroot.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.c3sl.ufpr.br : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.lysator.liu.se : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.aarnet.edu.au : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.n-ix.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.cat.pdx.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from www.gtlib.gatech.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.tku.edu.tw : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.cc.columbia.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.yandex.ru : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from 1favre.de : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.ping.uio.no : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.devnu11.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.linux.net.mk : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from pet.inf.ufsc.br : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.byfly.by : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mir1.archlinux.fr : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.dotsrc.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.puzzle.ch : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.spline.inf.fu-berlin.de : The requested URL returned error: 404 Not Found
    I tried manually browing to my top mirror in Firefox and had the same problem.  It's only for this one file though.  The rest of the packages that were marked for upgrade downloaded succesfully.  Try going here first:
    http://mirror.us.leaseweb.net/archlinux … os/x86_64/
    You can scroll down and see catalyst-dkms-12.9-1-x86_64.pkg.tar.xz on the list but when you try to click it:
    http://mirror.us.leaseweb.net/archlinux … pkg.tar.xz
    404 error
    EDIT: Actually after letting pacman sit for a minute, I got this:
    catalyst-dkms-12.9-... 4.2 KiB 64.0K/s 00:00 [######################] 100%
    (14/14) checking package integrity [######################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    Obviously 4.2KB is too small for this package.  I'm really not sure what's going on here.
    EDIT 2: Before anyone suggests it, I did try force refreshing the database multiple times (pacman -Syy)
    Last edited by weirddan455 (2012-10-13 20:00:43)

    I had just a similar issue with freeglut. When this happens, an update is probably in progress. Just wait a few minutes or try a different mirror. In my case it was sufficient to use the US mirror of Leaseweb (http://mirror.us.leaseweb.net/archlinux/$repo/os/$arch). I am able to download the catalyst DKMS package now, try again?

Maybe you are looking for

  • XSan with Gigabit Network

    Please, XSan solution is compatible with Gigabit Network? I have a XServer Xeon, XServer RAID but dont use a Fiber Channel cards, cable and connectors. Its Possible? Tks

  • Problem with email not recognizing my id

    Have 4S iphone that all of a sudden my email is not recognizing my id or password even though is correct

  • How to read the EXIF metadata from a .jpg file

    hi,every one Photos which are captured by a digital camera, have some parameters, such as the exposure time,ISO speed rating,camera model,focal length etc. How to read this parameters???

  • About Oracle RAC-CLUSTERS-HTMLDB-APLICATION SERVER

    Im trying to learn about Oracle RAC and its integration with others Oracle tools and have some questions that I want to know . 1º) I undertand that a Oracle Cluster are vaious computers that store a extensive Database. 2º) I also understand that a RA

  • Status does not refresh from "Started" to "Completed" into Cornerstone LMS

    Hello, The SCORM files (SCORM 1.2) I have produced with Captivate 8 do not refersh automatically in Cornerstone. Actually, the status remain to "Started" even if the online course is completed. The user is obliged to do "Ctrl" + "R" to get the status