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

Similar Messages

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

  • 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

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

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

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

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

  • 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

  • Deployed ESS in upgraded EP7.0, but content not found

    Hi,
    We upgraded our EP6 SP14 system to EP7 SP12.  Then, deployed ESS Business Package through JSPM.  It deployed with success.  However, I am unable to locate the content. 
    I know from another system that the content should be located in Content Administration -> Portal Content -> Content Provided by SAP -> End User Content -> Employee Self-Service.  However, the Employee Self-Service area is not there.  Also, none of the ESS roles can be found.
    Any ideas?  Thanks!
    Regards,
    Rick

    Hi Markus,
    I see the following line close to the to the top.
    sap.com  SAP_ESS  600 SP8 (1000.600.0.8.0.20070320033846)  SAP AG  MAIN_ERP05VAL_C  20070713083600 
    Then, I see several lines closer to the bottom.  The below list is just a sample.  I don't see anything like "BP_ERP5ESS" though.
    sap.com  ess/ar/addr  null (1182885)  SAP AG  MAIN_ERP05VAL_C  20070713082319  sap.com/SAP_ESS 
    sap.com  ess/ar/addr/cfg  null (1182169)  SAP AG  MAIN_ERP05VAL_C  20070713081004  sap.com/SAP_ESS 
    sap.com  ess/ar/bank  null (1183028)  SAP AG  MAIN_ERP05VAL_C  20070713083422  sap.com/SAP_ESS 
    sap.com  ess/ar/bank/cfg  null (1182170)  SAP AG  MAIN_ERP05VAL_C  20070713081007  sap.com/SAP_ESS 
    sap.com  ess/ar/emergency  null (1182888)  SAP AG  MAIN_ERP05VAL_C  20070713082321  sap.com/SAP_ESS 
    sap.com  ess/ar/emergency/cfg  null (1182173)  SAP AG  MAIN_ERP05VAL_C  20070713081009  sap.com/SAP_ESS 
    Any ideas?
    Thanks for your help!
    Rick

  • Paypal email message content not found in Mail search

    I've looked on the net and can't find any one else reporting this problem so it has to be something at my end.
    My Mail search cannot find any word found in the message body of an email from Paypal.
    I just upgraded to Yosemite so thought it was a problem with the new OS as I've been able to search message content in OS 10.8 (and previous) for years.
    However...
    I just re-started using a cloned HD with my old 10.8 OS on it and the search isn't working now.
    It finds everything else asked but nothing in a Paypal email.
    This includes messages in my inbox and messages stored in various "On My Mac" folders.
    I seem to remember this happened before, maybe 2004/2005?? Which ever OS version I was using then?
    It couldn't be worked out so I moved over to Microsoft Entourage.
    I don't want to switch email software again but the lack of ability to search is causing me some problems.
    I did open an Apple support case on this and they couldn't give me an answer but said it had been reported already and may be looked at for a fix in forthcoming OS revisions.
    Funny how no one's asked this on any community pages.
    Any ideas?? Am I missing something. I don't understand how it's worked on my older OS for years and now suddenly it's stopped.
    Does search need anything to find words in content that I may have inadvertently changed?

    I have now gone back to my OS 10.8 disc and re-built the folder with my paypal emails in and it is now searching ok so forget what i said earlier.
    I'd edit the original post but it won't let me???

  • Content not found!

    My Apple TV cant shuffle an album, only plays single songs! And why cant Apple TV play a continuouse album? Help!!

    I've updated my Apple TV... and now I get "No Content Found." Doesn't Apple read these messages!

  • Shared Services database content not found in the specified databaseI am do

    I am doing the installation of Hyperion planning 11.1.1.3 and i am getting this error while I am configuring the Shared Services.
    Any help?

    What OS are you installing it on, what type of database are you using, did you have previous versions of hyperion on the machine.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for