"Cannot find the following asset(s) referenced in the catalog:" error found in catalog.

I created a catalog within the catalog folder for the workspace, the same place the Default.cxml is. I created a library for service interfaces and a library for service implementations following the instructions at http://help.adobe.com/en_US/enterpriseplatform/10.0/AEPDeveloperGuide/WSabb771403789c7a3-3 1e63d5312fb7375fac-8000.html#WSe851854fd1e0856a3adf5f4513046ea7dc4-7ffe. When I use the annotations described my service interfaces and interface library are added automatically.
When I deploy my catalog there are no errors. I use CRXDE Lite and go to /content/mosaic/catalogs/[my catalog name] and I can see my interfaces and service classes in there.
I create a new Flex Project for ADEP Experience Services and selected the catalog I created. Within there I create a new stylesheet in the styleSheets package and it is created at [project]/src/styleSheets/[stylesheet name].I right clicked on the style sheet and selected "Compile CSS to SWF". My style sheet is added to the catalog automatically.
I try to deploy the catalog at this point and it give me the error, "Cannot find the following asset(s) referenced in the catalog: " and then it lists my stylesheet.
Has anyone had this problem and have an idea of what hole I am falling into?

There is something basic I am missing. I started over with my installation.
I moved the quick start jar into its own directory and renamed it "adep-author-4502.jar".
I started the jar.
After the server started I went to the package share and logged in, downloaded "es-sdk-pkg-1.0.186.zip", went to the packages and installed it.
I opened the properties for Flash Builder,
Within Flash Builder I created a new "Flex Project for ADEP Experience Services."
Application type: Web
Under server info I connected to the ADEP server
Within the Experience Services step I selected "Composite Application Framework Services" and left Library File Management as it was.
I downloaded the ADEP SDK from experience services server and created a directory for it locally.
Inside of the new application I created a new composite application catalog.
I created an MXML component. Inside the component I used the [Tile] annotation.
Looking inside the catalog I can see the MXML component was added as a tile.
I right click the catalog I created and selected Composite Application Framework, Deploy Composite Application Catalog.
At this stage I get the error for the tile I added.
Looking under packages the CAF oriented packages are:
mosaic-sdk-pkg-2.0.82.zip
composite-app-pkg-1.0.38.zip
I am using Flex SDK 4.5.1.

Similar Messages

  • Upgraded to Premiere Elements 12 and unlimited storage .. Elements program cannot find the catalog.

    Upgraded to Premiere Elements 12 and unlimited storage per Adobe staff, only problems since. Once I got catalog to properly start loading to Revel the new software wrongly messaged was that it was completely up to date. Now when i tried to start Elements program cannot find the catalog. I am the type person that am willing to pay to get this resolved so who do I call? I am doing this as a hobby and this is not fun etc... many useless unpleasant hours.

    I appreciate what you are both saying -- but it is not the music that is the problem.  The video itself is NOT blocked - you can view it on a computer -- but when you try to view it on ipad/iphone the message says, "not available on this platform".  Here is a link to a video I did in Elements 9 on Tuesday:
    http://youtu.be/06TaM22SkdE
    Here is the link to the video done last night in 11:
    http://youtu.be/h353KBGkodU
    The "raw files" are both adobe flash.flv -- it's just not making sense...
    Thank you!!!

  • Cannot find the path error

    I am trying to run a executable through a batch file. However, the batch file is never opened when the control reaches at that point of execution. The error message is:
    Cannot find the file 'c:\Program'(or one of its components). Make sure the path and the filename are correct and that all the required libraries are availableThe method where I am calling the batch file is:
    public void run_Fastran(int x)
           try
               File ftn07_i = new File( "C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               File ftn07 = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07") ;
               ftn07_i.renameTo(ftn07) ;
               String path = "";
               path = "cmd /c start C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FCall.bat";
               Runtime rt = Runtime.getRuntime();
               Process proc = rt.exec(path);
               String nameNew = "C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FTN04-" + x + "-" + getPathValue();//change p12 with the crack path input by user.
               File file = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FTN04i");
               while (file.exists()==false)//until FTNO4i come into existence
               File file2 = new File(nameNew);
                // Rename file
               file.renameTo(file2);
               File ftn07Back = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07") ;
               File ftn07_iBack = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               ftn07Back.renameTo(ftn07_iBack) ;
               File ftn07_i_del = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               ftn07_i_del.delete() ;
           catch(Exception e)
               e.printStackTrace();
        }my batch file is created with this method:
    public void writeBatch()
             try
    //            File user = new File("C:\\JBoss\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail() ) ;
    //            user.mkdir() ;
                BufferedWriter out = new BufferedWriter(new FileWriter("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FCall.bat"));
                String one = "@echo off" ;
                String two = "cd  \"C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\"  + getUserEmail()+ getSessionId() + "\"" ;
                String three = "\"C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FASTRAN.EXE\"" ;
                String four = "ren FTN04 FTN04i" ;
                String five = "EXIT" ;
                String six = ":finish" ;
                out.write(one + "\n");
                out.write(two + "\n");
                out.write(three + "\n");
                out.write(four + "\n");
                out.write(five + "\n");
                out.write(six + "\n");
                out.close();
            catch (IOException e)
        }It is running fine on my computer on application server. It is only when I am trying to deploy my application on the server I am facing this problem. I hope to get some help here.

    okay I can get to the batch file, but now another problem. My first command in the batch file is change directory, but for some reason it is not functioning right. To illustrate again my batch file created through writeBatch method listed above is:
    @echo off
    cd  "C:\Program Files\jboss-4.0.5.GA\bin\Fastran\email1176823047146"
    "C:\Program Files\jboss-4.0.5.GA\bin\Fastran\email176823047146\FASTRAN.EXE"
    ren FTN04 FTN04i
    EXIT
    :finishthe change directory command is only working till bin folder ie
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) Copyright 1985-2000 Microsoft Corp.
    C:\Program Files\jboss-4.0.5.GA\bin>I can change the directory manually however but not through the batch file. I am at loss, need help.
    Message was edited by:
    NasirMunir
    Message was edited by:
    NasirMunir

  • ORA-20000: cannot find the dimension

    Hi,
    While trying to install Oracle 11g R2 Single Instance Database on Solaris 10 (sparc) got following error:
    [Thread-10] [ 2012-07-14 20:57:33.395 EEST ] [CloneDBCreationStep.executeImpl:650] ** INSTALL SAMPLE SCHEMA'S **
    [Thread-10] [ 2012-07-14 20:57:33.397 EEST ] [CloneDBCreationStep.executeImpl:691] Transportable datafile:=/opt/oracle/oradata/egldb/example01.dbf
    [Thread-10] [ 2012-07-14 20:57:33.398 EEST ] [CloneDBCreationStep.executeImpl:698] Script to be Excecuted ::::=/opt/oracle/product/11.2.0/db_1/demo/schema/mkplug.sql
    [Thread-14] [ 2012-07-14 20:59:40.903 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 20:59:40.905 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-20000: cannot find the dimension
    ORA-06512: at "SYS.DBMS_DIMENSION", line 404
    ORA-06512: at "SYS.DBMS_DIMENSION", line 426
    ORA-06512: at "SYS.DBMS_SUMMARY", line 54
    ORA-06512: at line 1
    :msg
    Do you have any ideas about how to fix it?
    Thanks, Andriy.
    Edited by: 946442 on 14/7/2012 11:08

    Hi,
    More errors appeared after i ignored previous errors.
    Are they because of previous "ORA-20000: cannot find the dimension" error?
    [Thread-14] [ 2012-07-14 21:26:11.986 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:11.988 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.AQ$_ORDERS_QUEUETABLE_E does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:17.602 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:17.604 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.AQ$_STREAMS_QUEUE_TABLE_E does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:18.442 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:18.443 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.ORDERS_QUEUE does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:20.673 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:20.675 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.STREAMS_QUEUE does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    Thanks, Andriy.

  • Ftp connection: "Can not find the catalog/path"

    I have had a Webserver operating on my old IBook.
    I had it opened through my firewall, and everything worked.
    Now I try to connect to the same iBook, but with an IP-adress that comes from turning on
    Internet sharing on the Ethernet port of my iMac. I try to connect in iWeb, ftp server test.
    But the iMac I do things on, cannot find the catalog, it says. (At least the ftp login seems to work.)
    I have things in the path /Library/Webserver/Documents, and started my 3rd
    home page in the subdirectory iMe, which catalog I created inside the Documents folder.
    Thankful for all tips!
    Best Regards,
    /Peter K, Sweden

    As per usual, do not compond problems, mix them and then cry for help. And iWeb is not involved, yet.
    Start at the beginning.
    Set up your network and make it work. Period.
    On the remote computer where you want to have access, and publish your website, enable Remote login.
    Then test it and find out where you end up.
    There you create a folder where you want to publish your pages.
    Put a sampe html file in that folder.
    In the /Library/Webserver/Documents folder on that remote computer you create a symlink to that folder.
    Open your browser and type the URL to the file.
    TEST TEST TEST TEST TEST TEST TEST
    UNTIL IT WORKS.
    If you do not understand it, search the interwebs or find a forum that deals with it.
    Then, when it works, and only then, you may open iWeb.
    To publish to that remote folder you created earlier, choose this setting :
    The directory path is determined earlier when you tested the connection.
    You can also use filesharing.
    Enable it on the remote computer and then mount the remote disk on your desktop.
    Choose publish to folder in iWeb.
    iWeb doesn't care.

  • Cannot find the proxy server even after following the advice in the help section

    I successfully downloaded the latest version but I cannot connect to the internet. I get a "cannot find the proxy server" prompt. I have followed the advice in the help section but nothing seems to work.

    You can check20the connection settings here:
    *Tools > Options > Advanced : Network : Connection > Settings
    If you do not need to use a proxy to connect to internet then select "No Proxy" if the default "Use the system proxy settings" setting doesn't work.
    See "Firefox connection settings":
    *https://support.mozilla.com/kb/Firefox+cannot+load+websites+but+other+programs+can

  • Known Issue: MIDL fails to compile IDL files in UAP projects. Gives following error: midlrt : error MIDL4034: Failed to load a dependency file. Windows.winmd (HRESULT:0x80070002 - The system cannot find the file specified. )

    Visual Studio gives the following error:
    midlrt : error MIDL4034: Failed to load a dependency file. Windows.winmd (HRESULT:0x80070002 - The system cannot find the file specified. )
    This is because Visual Studio is looking for a WinMD file that contains the base types.  Unfortunately the metadata path passed by default to MIDL through Visual Studio does not resolve to the correct file.

    Work around:
    Update the "Additional Metadata Directories" for MIDL to include the Windows.Foundation.FoundationContract.WinMD
    To update the “Additional Metadata Directories” in Visual Studio, do the following:
    1)  Right click on your C++ Project file.
    2)  Choose properties.
    3)  Under Configuration Properties, click MIDL
    4)  Under MIDL choose “Command Line”
    5)  In the Additional Options text box enter:
    /Metadata_dir "C:\Program Files (x86)\Windows Kits\10\References\Windows.Foundation.FoundationContract\1.0.0.0”
    or on X86 machines
    /Metadata_dir "C:\Program Files\Windows Kits\10\References\Windows.Foundation.FoundationContract\1.0.0.0”

  • Have Creative Cloud Subscription- Windows 7 ultima--16GB ram memory-Photoshop cc 2014 updated- I cannot find the Creative Cloud Libraries instead I get My Libraries that I have not created- I cannot find the Assets tab. Tried several links no solution. pl

    have Creative Cloud Subscription- Windows 7 ultima--16GB ram memory-Photoshop cc 2014 updated- I cannot find the Creative Cloud Libraries instead I get My Libraries that I have not created- I cannot find the Assets tab. Tried several links no solution. How can I get the Creative Cloud Market Library?

    kglad,
    Thanks for the suggestion but I have attempted this many times to no avail. As I said in my original post, "I have researched this problem on this forum and the Adobe site and believe that I have tried everything over the past week."
    It is very late here (I am in Greece). I will have a further attempt in the morning. The windows machine is hut down. Thanks for your help.
    Bob

  • "the system cannot find the path specified" followed by x:\windows\system32

    Hi I have an HP pavilion g6, my recovery goes perfect up to this point a black window pops up with the system cannot find the path specified what is the reasoning for this I have a new hard drive and CD/DVD drive is there something else that is wrong with it to make it not complete the recovery?

    Using the Recovery disk set on the new hard drive, correct?  When this happens, is the Recovery disk still in the CD/DVD drive?  Actually the  " X:\ " part indicates that the install routine is still looking for the virtual memory slot that the Recovery Environment made during the recovery.  It has to find the real partition.
    HERE is a site that seems confident with the solution, but it is the only one I found that seemd to find a solution.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Error [0x80070003] The system cannot find the path specified

    We have Windows 2012 Server hosting 2 VMs - Domain Controller & RDS.  We have been doing Windows Server Backup incremental and have an ongoing issue with scheduled backups each night.  The backup shows completed with warnings and generates
    2 log files.
    The first log files shows:  
    Backup of volume \\?\Volume{5d46f853-5db2-11e2-93e7-806e6f6e6963}\ succeeded.
    Backup of volume C: succeeded.
    Backup of volume F: succeeded.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: ACBCD71E-A8CA-4672-B951-52C1BE8444BE
       Caption     : Backup Using Child Partition Snapshot\FMLRDS1
       Logical Path: 
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: Host Component
       Caption     : Host Component
       Logical Path: 
    The 2nd log file more often than not shows:  
    Backup of volume E: has failed. Backup failed as shadow copy on source volume got deleted. This might caused by high write activity on the volume. Please retry the backup. If the issue persists consider increasing shadow copy storage using 'VSSADMIN Resize
    ShadowStorage' command.
    Error in backup of E:\ during enumerate: Error [0x80070003] The system cannot find the path specified.
    Application backup
    Writer Id: {66841CD4-6DED-4F4B-8F17-FD23F8DDC3DE}
       Component: 2B4A9541-C88B-442E-9A7A-6D8A27342C11
       Caption     : Backup Using Child Partition Snapshot\FMLDC1
       Logical Path: 
       Error           : 8078010D
       Error Message   : Enumeration of the files failed.
       Detailed Error  : 80070003
       Detailed Error Message : (null)
    We had been getting a successful backup once or twice a week which showed completed (with no mentioned of warnings) but now it regularly shows completed with warnings as noted above.  
    We did a manual full backup of the DC to a different external drive a few days ago and that completed without warnings and the backup shows:  E: Completed 63.38 Full - VSS Copy Backup Successful, 8/27/13 3:35 PM - 4:43 PM. Data Transferred 63.38
    On a side note, we can view the logs in the windows/logs/windowsserverbackup directory but when we attempt to view the details of a log file through the Local Backup Console for any log which shows completed with errors, we get a "MMC has detected an
    error in the snapin and will unload and then it shows Object referenced not set to instance of an object."  The manual backup noted above that was successful is able to be viewed through the Local Backup Console without this error.  
    Any idea as to why this is failing during the scheduled backups?  This hosts a database that we need to have regular successful backups.

    Hi,
    First please follow the steps below to re-register dll files. Detailed information could be found here: http://support.microsoft.com/kb/940032:
    1. Click Start, click Run, type cmd, and then click OK. 
    2. Type the following commands at a command prompt. Press ENTER after you type each command. 
    3. cd /d %windir%\system32 
    4. Net stop vss 
    5. Net stop swprv 
    6. regsvr32 ole32.dll 
    7. regsvr32 oleaut32.dll 
    8. regsvr32 vss_ps.dll 
    9. vssvc /register 
    10. regsvr32 /i swprv.dll 
    11. regsvr32 /i eventcls.dll 
    12. regsvr32 es.dll 
    13. regsvr32 stdprov.dll 
    14. regsvr32 vssui.dll 
    15. regsvr32 msxml.dll 
    16. regsvr32 msxml3.dll 
    17. regsvr32 msxml4.dll 
    Please let us know if any command failed to be performed with an error.
    If issue still exists, have a try with the step it provided "VSSADMIN Resize ShadowStorage" to enlarge the shadow storage.
    Also you could test to delete all old Shadow Copies by acccessing <Drive> Properties --> Shaodow Copies --> Delete Now. This will remove all your backup information so if it is not acceptable, just skip this step.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • Unable to delete User object in FIM Portal - Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"

    Hi,
    ***Problem
    I encounter a problem with FIM (version 4.1.3441.0 and 4.1.3496.0) when I try to delete a User object (and only a User object) whatever if it is
    manually/Expiration Workflow/Powershell.
    Deleting a User object used to be perfectly functional and, without any product version modification, stopped working. I haven't neither deleted/modified or add a
    "Grant" MPR or any of the corresponding Sets since last time I saw it working.
    Displayed error is "Request could not be dispatched" in FIM Portal and is referencing a stored procedure in Event Viewer.
    ***Error details
    When I try to delete a User object, here is the output :
    Portal
    "Processing error" on submit
    with the following details 
    Request status is stuck at "Validating" until next restart of FIM Service (after what it becomes “Canceled”)
    Request’s “Applied Policy” tab does not contain any MPR where, at least, a “Grant” MPR is expected
    As SQL Timeout is relatively high and error happens quickly, I don’t think there is a Timeout problem under that.
    Logs
    « Application »
    The Portal cannot connect to the middle tier using the web service interface.  This failure prevents all portal scenarios from functioning correctly.
    The cause may be due to a missing or invalid server url, a downed server, or an invalid server firewall configuration.
    Ensure the portal configuration is present and points to the resource management service.
     « Forefront Identity Manager »
    Reraised Error 50000, Level 16, State 1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements,
    Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition" because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.Data.SqlClient.SqlException: Reraised Error 50000, Level 16, State
    1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements, Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"
    because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler,
    TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult
    result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.ResourceManagement.Data.DataAccess.UpdateRequest(RequestType request, IEnumerable`1 updates)
       --- End of inner exception stack trace ---
    Requestor: urn:uuid:7fb2b853-24f0-4498-9534-4e10589723c4
    Correlation Identifier: e7209633-46d0-4f4b-a59e-807649ef71ea
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.InvalidCastException: Specified cast is not valid.
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier, UniqueIdentifier requestContextIdentifier,
    Boolean maintenanceMode)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Delete(Message request)
       --- End of inner exception stack trace ---
    For information, a maintenance plan rebuild/reorganize indexes daily and this problem has occurred on servers with different performances.
    Is any of you has already encounter this problem ?
    Any help would be greatly appreciated,
    Thanks in advance for your help,
    Matthew

    While there are several SQL Agent jobs (FIM Temporal Events, Maintain Sets, and Maintain Groups among others)created by the FIM install only one of those is enabled and scheduled and it calls all of the same stored procedures that the other
    jobs do. Step 2 is Maintain sets and Step 3 is maintain groups. So the Maintain sets and groups jobs never need to get enabled and scheduled, but if you want them to be maintained more frequently then you can.
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Cannot find the class file

    Hi All,
    Can any one help me regarding the issue?
    Error:
    package com.support.misc.feedback
    I am getting the following error for the above line. But I have created the Hierarchy in folder structure. But still it is throwing the error.
    1. Cannot find the class file for com.sapportals.htmlb.page.DynPage
    2. This compilation unit indirectly references the missing type com.sapportals.htmlb.page.DynPage (typically some required class file is referencing a type outside the class path)     FeedbackBean.java
    Thanks in Advance.
    Message was edited by: Gowsika Kannan

    Hi Gowsika,
    the class needed is located in htmlb.jar which can be found under <irj-root>/WEB-INF/portal/portalapps/com.sap.portal.htmlb/lib
    You need to integrate this jar in your .classpath
    Hope this helps,
    Robert
    PS: Please do not post the same question 3 times

  • Cannot find the class file for com.sap.portal.services.api.connectorgateway

    Hi,
    I was trying the "How to BI JAVA SDK in a Portal iView and get the following error.
    The project was not built since its classpath is incomplete. Cannot find the class file for com.sap.portal.services.api.connectorgateway.IConnectorGatewayService. Fix the classpath and try rebuilding this project.
    I have the following in my portalapp.xml file
    <property name="SharingReference" value="com.sap.portal.ivs.connectorservice"/>
    and i have also added the jar file "com.sap.portal.ivs.connectorservice_api" in the set of lib's
    Has some faced a similar issue? or can someone suggest how I could possibly resolve this.
    Thanks,
    Smitha

    Hi Smitha:
       My webdynpro dc was build failed for "This compilation unit indirectly references the missing type com.sap.engine.services.webservices.espbase.client.dynamic.content.GenericObject (typically some required class file is referencing a type outside the classpath)".
    How should i do?  Thank you!

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • Error message on my development workstation: The system cannot find the file specified.

    Post Author: cseverin
    CA Forum: Crystal Reports
    Hi,
    I am currently developing an ASP.NET website using Visual Studio.NET 2005. I am using the .NET 2.0 framework, VB.NET as my programming language and I connect successfully to a SQL Server 2005 database.  I can select, insert, update and delete data from the database elsewhere in my project, so I know basic connectivity isn't an issue.  The problem seems to be with Crystal Reports. 
    I created a folder called 'Reports' in my project and added a Crystal Report file (OpenFiles.rpt) to it.  I designed the report and initally used a hard-coded SQL query as its datasource so I could quickly get the database fields onto the report and preview them.  All worked fine. 
    To make the report accessible to the rest of the website, I created an .xsd dataset file containing the three tables (and their corresponding tableadapters) that the report requires and then redeveloped the report using the dataset as the datasource for the report.  After doing this, the preview no longer worked.
    Next, I added a page to the website and dragged a Crystal Report Viewer Control onto it.  In the code behind the page I wrote:
    Option Strict On
    Imports System.Data
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Partial Class Reports
         Inherits System.Web.UI.Page
         Private objOpenFilesreport As OpenFilesReport
         Private rptOpenFiles As ReportDocument
         Private strLastErrorMessage As String = Nothing
         Private errLastException As Exception = Nothing
         Dim strFileKey As String
         Dim strJurisdictionCode As String
         Dim strStaffId As String
         Dim strReportId As String
         Private Sub ConfigureCrystalReports()
              Dim reportPath As String = Server.MapPath("OpenFiles.rpt")
              Dim rptopenfiles As New ReportDocument
              rptOpenFiles.Load(reportPath)  <== I checked this during execution and the value correctly points to the OpenFiles.rpt file in the Reports     folder of my project
              Dim ConnectionInfo As ConnectionInfo = New ConnectionInfo()
              ConnectionInfo.DatabaseName = my database
              ConnectionInfo.UserID = login id of user
              ConnectionInfo.Password = user's password
              SetDBLogonForReport(ConnectionInfo, rptopenfiles)
              CrystalReportViewer1.ReportSource = rptopenfiles
         End Sub
         Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
             ConfigureCrystalReports()
         End Sub
         Private Sub SetDBLogonForReport(ByVal ConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
              Dim myTables As Tables = myReportDocument.Database.Tables
              For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                   Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                   myTableLogonInfo.ConnectionInfo = ConnectionInfo
                   myTable.ApplyLogOnInfo(myTableLogonInfo)
              Next
         End Sub
    End Class
    I added a hyperlink to one of the existing pages on the website to navigate to this page with the report viewer on it.  When I run the website in Visual Studio and click on the hyperlink I get the following:
    Server Error in '/MyTest' Application.
    The system cannot find the file specified.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: The system cannot find the file specified.Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;COMException (0x80004005): The system cannot find the file specified.
    &#93;
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +126
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +442
    &#91;Exception: Load report failed.&#93;
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +513
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +1378
       CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport() +149
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_DataDefinition() +85
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_ParameterFields() +158
       CrystalDecisions.Web.CrystalReportSource.BindControlParameter(Parameter parameter) +130
       CrystalDecisions.Web.CrystalReportSource.DataBindParameters() +191
       CrystalDecisions.Web.CrystalReportSource.EnsureParameters(Boolean forceDataBind) +90
       CrystalDecisions.Web.CrystalReportSource.LoadCompleteEventHandler(Object sender, EventArgs e) +47
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +96
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4086
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832 
    Any ideas, anyone?
    Also, assuming I can get past this error, I will need to figure out how to fill the tables in the .xsd dataset file.  I have written a class for the dataset that includes functions that populate the tables in the dataset from the database by executing SQL queries.  But how do I call these functions at the time the report is run?
    This is my first Crystal report written in .NET and I've been struggling with it for days now.  Any help would be most appreciated!
    Thanks very much!
    Chris Severin

    hello, the error message is obviously coming from one of the installed mcafee extensions. please directly contact mcafee technical support - they can likely give you more detailed guidance and are the only ones who can fix bugs or make necessary adjustments in the addon.

Maybe you are looking for

  • I had all my photos neatly in events on the MAC; with this new upgrade, all photos are renamed by location not what I want; how do I change this back?

    MAC; OS X Yosemite 10.10.3. All my photos on the MAC were in events named by me. Now, with this upgrade, all my photos are without my event names and named by iphoto by date and location (sometimes incorrect). I do not like this at all. I want to ret

  • Nano 5th gen totally screwed

    My relatively new 5th gen (had since october '10) has died. When I try to sync, I get a -124 error, saying it's unable to sync, a message saying 'would to like to scan and fix' EVERY TIME I plug the iPod in. It's also been saying that it's corrupted

  • CO document not created while billing

    Hi, When a sales document is released to accounting, the controlling document is not being generated. The following documents are being generated. Accounting document Profitability Analysis document Special purpose ledger document. Could you please h

  • N82 Firmware

    E71, E66, N96 and even N85 got a firmware update! Why Nokia is not releasing one for the N82? It still have battery problems! Damn that Nokia! I think am going for a SE.

  • "Infinite Loop" Download Problem

    So I was downloading an album from iTunes, and one of the songs wouldn't download. When it reached the end of the bar, it would just reset, in an infinite loop. And the song is Album Only, so I can't just cancel the download and buy the song again. H