Create a SharePoint 2013 Appplication in C#,Error:This operation can be performed only on a computer that is joined to a server farm

I want to create a sharepoint application in C#:
SPFarm CurrentFarm = SPFarm.Local;
SPWebApplicationBuilder webAppBlder = new SPWebApplicationBuilder(CurrentFarm);
webAppBlder.UseNTLMExclusively = true;
webAppBlder.AllowAnonymousAccess = false;
webAppBlder.UseSecureSocketsLayer = false;
SPWebApplication webApp = webAppBlder.Create();
webApp.Provision();
It's create a new application succeed,but when I view the site there is an error:
This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To connect this server to the server farm, use the SharePoint Products Configuration
Wizard, located on the Start menu in Microsoft SharePoint 2010 Products.
How can I fix this issue?
ps:I had create some new application in sharepoint web site.It's all fine without any issue.
The sharepoint server,sqlserver and the programs in the same machine.
Besr regards

Hi,
I think below line is causing the error -
SPWebApplicationBuilder webAppBlder = new SPWebApplicationBuilder(CurrentFarm);
can you put that line within a try catch and see that causes an exception. If so,  you might try as below-
SPSecurity.RunWithElevatedPrivileges(delegate()
webAppBuilder = new SPWebApplicationBuilder(CurrentFarm);
Hope this helps!
Ram - SharePoint Architect
Blog - SharePointDeveloper.in
Please vote or mark your question answered, if my reply helps you

Similar Messages

  • SP 2013 - Error: This operation can be performed only on a computer that is joined to a server farm

    Hello Community!
    I am working with SharePoint 2013 and I built a farm inside the firewall.  Then a decision was made to move the two WFE's to the DMZ.  Since that time, whenever I try to access the site collections, I get the error below.  Other information: All
    the web applications are on port 80, but I'm not having any problem with accessing Central Administration which is on port 8080; the network team did screw up the DNS originally, but I'm told it's correct now; the two WFE's servers show in my Manage servers
    on the Farm interface 2X, once with the server name, once with the fully Qualified Domain Name, the ones with the FQDN shows a Services Running status of Not Configured.
    Has anyone else ever seen this error and if so please provide guidance and instruction for fixing the error.
    Thanks!
    Tom
    Server Error in '/' Application.
    This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server
    to read from the configuration database. To connect this server to the server farm, use the SharePoint Products Configuration Wizard, located on the Start menu in Microsoft SharePoint 2010 Products.
    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.InvalidOperationException: This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To connect this server
    to the server farm, use the SharePoint Products Configuration Wizard, located on the Start menu in Microsoft SharePoint 2010 Products.
    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:
    [InvalidOperationException: This operation can be   performed only on a computer that is joined to a server farm by users who   have permissions in SQL Server to read from the configuration
    database. To   connect this server to the server farm, use the SharePoint Products   Configuration Wizard, located on the Start menu in Microsoft SharePoint 2010   Products.]
         Microsoft.SharePoint.Utilities.SPUtility.AlternateServerUrlFromHttpRequestUrl(Uri   url) +262
         Microsoft.SharePoint.Administration.SPAlternateUrl.GetContextUri(HttpContext   ctx) +385
         Microsoft.SharePoint.SPAppRequestContext.InitCurrent(HttpContext context)   +1013
         Microsoft.SharePoint.SPAppRequestContext.get_Current() +175
         Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site,   String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean   bNotAddToContext, Byte[] UserToken,
    SPAppPrincipalToken appPrincipalToken,   String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) +400
         Microsoft.SharePoint.SPRequestManager.GetContextRequest(SPRequestAuthenticationMode   authenticationMode) +120
         Microsoft.SharePoint.Administration.SPFarm.get_RequestAny() +370
         Microsoft.SharePoint.SPLanguageSettings.GetGlobalInstalledLanguages(Int32   compatibilityLevel) +39
         Microsoft.SharePoint.Administration.SPTemplateFileSystemWatcher.RefreshInstalledLocales()   +103
         Microsoft.SharePoint.Administration.SPTemplateFileSystemWatcher.Initialize()   +130
         Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.System.Web.IHttpModule.Init(HttpApplication   app) +873
       System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr   appContext, HttpContext context, MethodInfo[] handlers) +582
         System.Web.HttpApplication.InitSpecial(HttpApplicationState state,   MethodInfo[] handlers, IntPtr appContext, HttpContext context) +322
         System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr   appContext, HttpContext context) +384
         System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext)   +397
    [HttpException (0x80004005): This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To
    connect this server to the server farm, use the SharePoint Products Configuration Wizard, located on the Start menu in Microsoft SharePoint 2010 Products.]
         System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +646
         System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +159
       System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest   wr, HttpContext context) +771
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18010
    Tom Molskow - Senior SharePoint Architect - Microsoft Community Contributor 2011 and 2012 Award -
    Linked-In - SharePoint Gypsy

    Hi Tom,
    According to your description, my understanding is that you got an error when you moved your SharePoint.
    This error occurs when the SharePoint farm administrator cannot connect to your configuration database. Please verify the followings:
    Make sure that from the SharePoint front end and application servers that you can ping your SQL server.
    Make sure that your Farm account has permission to the configuration database.
    Lastly verify that your database didn't for some reasons go into recovery mode.
    once everything is fine and you are still having issues, restart the SQL host service on the SQL server. Once the service is restarted you will need to reboot Central Admin and then your front end servers.
    In addition, as you built your farm inside the firewall, please disable the firwall, or create rules for SQL Server service in the firwall on SQL server. More information about creating rules in firewall, please refer to the following posts:
    http://social.technet.microsoft.com/Forums/en-US/c5d4d0d0-9a3b-4431-8150-17ccfbc6fb82/can-not-create-data-source-to-an-sql-server
    http://www.mssqltips.com/sqlservertip/1929/configure-windows-firewall-to-work-with-sql-server/
    Here is a similar post for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/ea54e26c-1728-48d4-b2c5-2a3376a1082c/this-operation-can-be-performed-only-on-a-computer-that-is-joined-to-a-server-farm-by-users-who-have?forum=sharepointgeneral
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • SharePoint 2013 - Server Error in '/' Application - This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database

    Hi
    After I ran SharePoint configuration wizard successfully to upgrade to SharePoint 2013 / SP1.
    I can open Central Administration site just fine.
    but now when I open any Site collection,  I got this error.
    Server Error in '/' Application
    This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To connect this server to the server farm, use the SharePoint Products Configuration
    Wizard, located on the Start menu in Microsoft SharePoint 2010 Products
    I have restarted all the servers:  SQL server, WFE and APP servers but still cann't get this resolve.
    Services on all servers are running,  IIS - application pools are running.
    Can someone help with where that could be a problem or if there is a solution.
    Thanks in advance for your comments or advices.
    Swanl

    Please verify the followings:
    Make sure that from the SharePoint front end and application servers that you can ping your SQL server.
    Make sure that your Farm account has permission to the configuration database.
    Lastly verify that your database didn't for some reasons go into recovery mode.
    once everything is fine and you are still having issues, restart the SQL host service on the SQL server.
    Once the service is restarted you will need to reboot Central Admin and then your front end servers.
    In addition, as you built your farm inside the firewall, please disable the firwall, or create rules for SQL Server service in the firwall on SQL server.
    More information about creating rules in firewall, please refer to the following posts: http://social.technet.microsoft.com/Forums/en-US/c5d4d0d0-9a3b-4431-8150-17ccfbc6fb82/can-not-create-data-source-to-an-sql-server http://www.mssqltips.com/sqlservertip/1929/configure-windows-firewall-to-work-with-sql-server/
    Here is a similar post for you to take a look at: http://social.technet.microsoft.com/Forums/en-US/ea54e26c-1728-48d4-b2c5-2a3376a1082c/this-operation-can-be-performed-only-on-a-computer-that-is-joined-to-a-server-farm-by-users-who-have?forum=sharepointgeneral 
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • I am getting the error "This movie can be played only on displays that support HDCP" when attempting to play a HD movie from iTunes to my TV.  The TV is a Samsung UN46B7000WF w/resolution 1080p

    Hello Apple Community,
    I am getting the message "THis movie can be played only on displays that support HDCP (High-bandwidth Digital Content Protection)."  This is the first time I have tried to watch a HD movie that I bought from iTunes from my iMac to my TV.  (This is also the first attempt to go from my iMac to my TV.)  I have a Samsung LED tv that says it is HDCP compatible with Full HD (1080p) and Native resolution is 1920X1080.  I bought a Rocketfish Thunderbolt to/Mini Displayport to HDMI adapter (says support is up to 1920X1200 video resolution) and Mediabridge ULTRA Series HDMI Cable (35 Feet) - High-Speed Supports Ethernet, 3D and Audio Return category 2 certified (supports resolution up to 4K including 1440p, 1080p, 1080i and lower).
    I can get the iMac to display on my TV but am guessing that I have not managed the settings correctly in Display for either the iMac or the TV.  In addition, I do not have sound yet.  Although, the card from Mediabridge says that I need to update my drivers.  Any help/advice with the settings for iMac to TV to watch in HD and adding HDMI drivers would be greatly appreciated.
    Thank you in advance for your assistance.
    Sincerely,
    Lisa

    Hello All,
    I have figured out the sound issue: System Preferences>Sound and choose the TV for output.
    Regards,
    Lisa

  • Can I label a Power View sheet created in SharePoint 2013?

    Hi,
    Is this possible to label a Power View sheet created in SharePoint 2013 and have it shown on the preview snapshots?
    This is because in the PowerPivot Gallery in SharePoint 2013 has a really nice display of previews with Excel workbook that includes a label on top of the preview for each worksheet in the workbook.
    Thanks,
    Jane

    P.S.  if this is still not making sense create a power view report in SharePoint from a SSAS cube.  Save that power view report in SharePoint.  The power view report should
    have a couple of measures and 1 or 2 dimension.  Open the report just to confirm it is saved correctly.  Now go to SSAS and rename 1 of the measures or dimensions that you used, Save and rebuild your olap .  If it’s a calculated measure
    you just need to save olap.    Now open your power view report and notice that that measure/dimension you changed is no longer in the report. 
    IN one hand it is great that reports do not error and break; however, on the other hand the users might not know what measure/dimension changed and then be lost/mad because the report no longer
    works like they want.  In my opinion it would have been better if the power view broke with an error message that it cannot load because measure x does not exist than to just load fine. 
    In any case I need a method to know when a dimension/measure is modified what reports are using it.   Another example is this could even be a case where the dimension values are getting
    modified and we need to potentially make a update to any power view/pivot using this dimension as a filter? 
    Ken Craig

  • Sharepoint 2013 Workflow not available on Site created from Sharepoint 2013 Foundation Solution Template

    If I create a template on SharePoint 2013 Foundation, then create a site on SharePoint Enterprise (or Office/365) fully configured to support SharePoint 2013 workflows. When I access the site through SharePoint Designer 2013, and attempt to create a workflow
    SharePoint 2013 Workflows are not available -- you get message that SharePoint 2013 Workflow platform is not available because it is not configured on the server. This appears to be a bug in SharePoint Designer as the 2013 Workflows are available on the team
    site on the same site collection. There is no reason that a site created from a SharePoint 2013 foundation template should have this restriction.   To make matters worse if you then save that site as a template on the SharePoint 2013 Enterprise (or
    Office/365) system and create a new site from the that template you get the same issue.
    Anyone know a workaround/fix to this issue.   Have imported the template into Visual Studio but I can not find any way in Visual Studio to enable SharePoint 2013 workflows.   A solution that involves Visual Studio import would work fine
    for me.
    Earllibby

    Apparently you did not read my question very carefully.   The workflow manager is configured properly on this server and for the basic Team site in this site collection the full SharePoint 2013 workflows are available in SharePoint Designer 2013.  
    BUT they are not available on another site in the SAME SITE COLLECTION that was created from a solution template that was created on a SharePoint Foundation server.
    Earllibby

  • I get error "This operation is not permitted" after creating form and opening it in Reader...

    Hi,
    I am very frustrated with this form I have created.  I created the form in Acrobat 8 but could not get it allow changes to be saved until I chose to "distribute" form.  I did that and now have a form that can be caved once filled out however when you open it you get the error "This operation is not permitted".
    From reading some other posts, I have done the following:
    Checked security settings and they do not fix it.
    Checked that all fields were form fields and they seem to be.
    Checked restrictions listed in purple bar and there were none.
    Checked for "unembedded" fonts and there were none.
    I think using Acrobat 9 might help me but I do not want the expense as I only use Acrobat for forms like this once a year.
    Does anyone know what is going on here and can maybe help?
    Thanks,
    Sean

    I'm having the same problem. Have you already found a solution?

  • Can't copy Aperature Library to external.  Get this error "The operation can't be completed because an item is being modified."

    I have been trying to find a solution to this problem by browsing this forum but I can't seem to find a solution.
    As many others have decided to do I want to copy my Aperature library to an external FW 800 drive as my laptop space is dwindling.  It seems all you need to do is copy the Library from the finder which can also be revealed in the preference if Aperature.  When copying it seems to transfer for a few seconds but then I get this error "The operation can’t be completed because an item is being modified."  I have formatted the drive correctly and there is no issues with Aperature itself so why do you think I am having this error?  What can I do to copy this Library to my external?

    Reboot your machine make sure Aperture doesn't start (as Lion is liable to do) and try it.

  • How to fix error: This installation package could not be opened. Verify that the package exists and that you can access it, or contact the applikcation vendor to verify that this is a valid Windows Installer package."

    ERROR: This installation package could not be opened. Verify that the package exists and that you can access it, or contact the applikcation vendor to verify that this is a valid Windows Installer package." I have tried everything which I found on google and apple community. Does anybody have the exact solution? PLEASE HELP!

    What has this to do with the application Front Row which this forum covers?
    What are you trying to install, on what Mac, with what version of OS X?

  • Error "This operation is available only for certified forms"

    We have developed the Adobe form in Webdynpro ABAP (NW04S SP9).When we test the form in the ABAP side it works fine. But when we deploy the form in the portal and try to perform the same action we get the error "This operation is available only for certified forms". Could someone let us know what the problem could be?
    thanks

    the first thing to check would be that there's
    no logic error in your application that's causing multiple threads to try to close
    the same folder.... and if there is, note that there is a timing-window problem between calling imapFolder.isOpen() and imapFolder.close(). Only one thread should be doing this anyway.

  • Server 2012 In-place upgrade to 2012 R2 error. Error upgrading: Setup can't continue. Restart the computer and restart Setup. When prompted, try getting the latest updates

    Trying to upgrade server 2012 with RDS role on it, to server 2012 R2.
    It stays for a while on step "Collecting files, settings, and applications 0%"
    and then returns the error:
    Error upgrading: Setup can't continue. Restart the computer and restart Setup. When prompted, try getting the latest update
    Installed all the latest updates, rebooted, also tried to to run setup with local admin, still the same.
    Setup logs contain user profile related errors:
    [0x08039d] MIG    Cannot add mapping for user profile C:/Users/Administrator.001. Error: 32: Win32Exception: The process cannot access the file because it is being used by another process. [0x00000020] __cdecl Mig::CIndirectKeyMapper::CIndirectKeyMapper(class
    UnBCL::String *,struct HKEY__ *,class UnBCL::String *,class UnBCL::String *,int,int,const Mig::HiveLoadRetryOptions *)[gle=0x000000cb]2014-08-17 03:30:13, Error      [0x080801] MIG    User profile loading error. Aborting
    due to external request.[gle=0x000000cb]

    I was able to get past "Collecting files, settings, and applications 0%" by disabling user profile disks, but then on reboot I got another error:
    Setup can't continue. Your computer will now restart, and your previous version of Windows will be restored.
    Setuperr.log
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:34, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:37, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:40, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:01:44, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:11:43, Error      [0x0808fe] MIG    Plugin {65cbf70b-1d78-4cac-8400-9acd65ced94a}: CreateProcess(s) failed. GLE = d
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMJPMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMJPMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\IMKRMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\IMKRMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\CHXMIG.DLL)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\CHXMIG.DLL) gle=0
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibraryEx error (C:\$WINDOWS.~BT\Sources\ReplacementManifests\Microsoft-Windows-TextServicesFramework-Migration\TableTextServiceMig.dll)
    gle=126
    2014-08-17 04:11:46, Error      [0x0808fe] MIG    Plugin {0b23c863-4410-4153-8733-a60c9b1990fb}: LoadLibrary error (C:\Windows\system32\TableTextServiceMig.dll) gle=0
    2014-08-17 04:15:12, Error      [0x0808fe] MIG    Plugin {ee036dc0-f9b7-4d2d-bb94-3dd3102c5804}: BRIDGEMIG: CBrgUnattend::CollectBridgeSettings failed: 0x1, 0
    2014-08-17 04:15:23, Error      [0x0808fe] MIG    Plugin {D12A3141-A1FF-4DAD-BF67-1B664DE1CBD6}: WSLicensing: Failed to read machine binding, hr=0x80070002
    2014-08-17 04:15:23, Error      [0x0808fe] MIG    Plugin {D12A3141-A1FF-4DAD-BF67-1B664DE1CBD6}: WSLicensing: Error reading Server Info hr=0x80070490
    2014-08-17 08:52:44, Error                        Mig::CUpgradeTransportPlatform::SetUserContext: Offline platform failed to set the user context
    USER00000000[gle=0x000000cb]
    2014-08-17 08:52:44, Error                 MIG    Mig::CKnowledgeManager::BeginProcessingContext: Source platform failed to set the user context USER00000000[gle=0x000000cb]
    2014-08-17 08:52:44, Error                        MigApply caught exception: Win32Exception: Can't switch to requested user context: USER00000000.:
    A device attached to the system is not functioning. [0x0000001F] int __cdecl Mig::CKnowledgeManager::Apply(class Mig::CPlatform *,class Mig::CPlatform *,class Mig::CPlatform *,class Mig::CUserMappingList *,class UnBCL::Hashtable<class UnBCL::String *,class
    UnBCL::String *> *,class Mig::CAgentManager *,struct IMigExecuteProgress *)[gle=0x000000cb]
    2014-08-17 08:52:44, Error                 MIG    pDoOnlineApply: Apply operation failed. Error: 0x00000004[gle=0x000000cb]
    2014-08-17 08:52:44, Error      [0x0802f5] MIG    CMediaManager::Close: m_pSelectedTransport->Close(1) failed with Exception Win32Exception: Device was open with readonly access.: Access is denied. [0x00000005] void
    __cdecl Mig::CMediaManager::CloseTransport(int)
    void __cdecl Mig::CUNCTransport::Close(int).[gle=0x000000cb]
    2014-08-17 08:52:44, Error                        MigCloseCurrentStore caught exception: Win32Exception: Device was open with readonly access.:
    Access is denied. [0x00000005] void __cdecl Mig::CMediaManager::CloseTransport(int)
    void __cdecl Mig::CUNCTransport::Close(int)[gle=0x000000cb]
    2014-08-17 08:52:47, Error                 MIG    Callback_ApplyNewSysMachineSpecific: Migration phase failed.

  • ITunes error: This program can't start because iAdCore.dll is missing from your computer. Try reinstalling the program to fix this problem.

    iTunes error: This program can't start because iAdCore.dll is missing from your computer. Try reinstalling the program to fix this problem.
    Windows 7 Professional. AMD 64 bit processor. New install of itunes.
    Unable to uninstall. Unable to reinstall. Sigh.

    THANK YOU!   turingest2
    See Troubleshooting issues with iTunes for Windows updates.
    This Fix WORKED!!!!!  And had aready tried MANY others first... 
    https://discussions.apple.com/docs/DOC-6562#iadcore   <--  This is a direct link to solution...

  • Fatal Error: This J2EE SDK release runs only on Java 2 (JDK1.2 or later)

    Hi
    Can any one help me
    i install the j2ee
    i have jdk 1.4 version
    i set the JAVA_HOME & J2EE_HOME path also
    but when i run j2ee.bat i got the folloing error
    Fatal Error: This J2EE SDK release runs only on Java 2 (JDK1.2 or later)
    so any one solved my problem
    Regards
    Nimesh

    Another possibility might be the J2EE implementation itself.
    In the code for j2sdkee1.2.1, the error you see appears to originate in the checkJVMVersion method of com.sun.enterprise.util.Utility:
    if ( !javaVersion.startsWith("1.2")
    && !javaVersion.startsWith("1.3") ) {
    errmsg += "Fatal Error: This J2EE SDK release runs only on " +
    "Java 2 (JDK1.2 or later)\n";
    fatal = true;
    This method is called first by J2EEServer. If you are using a later implementation of J2SE, then you will probably have some problems.

  • SharePoint 2013 Workflow Lookup Column Error

    When I try to use the value from a lookup column (e.g. display the selected value in the body of a email) in a SharePoint 2013 workflow I receive the following error. It works fine if I use the SharePoint 2010 workflow platform, but I always receive a error
    with 2013.
    First Error:
    Retrying last request. Next attempt scheduled in less than one minute. Details of last request: HTTP NotFound to http://portal.test.com/sites/Test/_vti_bin/client.svc/web/lists/getbyid(guid'00000000-0000-0000-0000-000000000000')/Items(10)?%24select=ID%2CLookupId%2CLookup%2FTitle&%24expand=Lookup
    Correlation Id: 3fb1bac9-f4b6-bbf1-a664-b3748668ea3c Instance Id: e7b4064d-029d-4a8b-9a75-7939f10e8817
    <script type="text/javascript">// <![CDATA[ var errorMessage = "Something went wrong. To try again, reload the page and then resume
    the workflow."; var dlg = null; function RetryWorkflow4(instanceName) { showDialog(); var ctx = SP.ClientContext.get_current(); var wfManager = SP.WorkflowServices.WorkflowServicesManager.newObject(ctx, ctx.get_web()); var instanceService = wfManager.getWorkflowInstanceService();
    var instance = instanceService.getInstance(instanceName); instanceService.resumeWorkflow(instance); ctx.executeQueryAsync( function(sender, args) { closeDialog(); theForm.submit(); }, function (sender, args) { closeDialog(); alert(errorMessage); } ); } //
    ]]> </script>
    Error from SharePoint Logs:
    Microsoft.SharePoint.SPException: List does not exist.  The page you selected contains a list that does not exist. 
    It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException: List does not exist. 
    The page you selected contains a list that does not exist. 
    It may have been deleted by another user.     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetListsWithCallback(String bstrUrl, Guid foreignWebId, String bstrListInternalName, Int32 dwBaseType, Int32 dwBaseTypeAlt,
    Int32 dwServerTemplate, UInt32 dwGetListFlags, UInt32 dwListFilterFlags, Boolean bPrefetchMetaData, Boolean bSecurityTrimmed, Boolean bGetSecurityData, Boolean bPrefetchRelatedFields, ISP2DSafeArrayWriter p2DWriter, Int32& plRecycleBinCount)
        at Microsoft.SharePoint.Library.SPRequest.GetListsWithCallback(String bstrUrl, Guid foreignWebId, String bstrListInternalName, Int32 dwBaseType, Int32 dwBaseTypeAlt, Int32 dwServerTemplate, UInt32 dwGetListFlags, UInt32
    dwListFilterFlags, Boolean bPrefetchMetaData, Boolean bSecurityTrimmed, Boolean bGetSecurityData, Boolean bPrefetchRelatedFields, ISP2DSafeArrayWriter p2DWriter, Int32& plRecycleBinCount)    
    --- End of inner exception stack trace ---    
    at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)    
    at Microsoft.SharePoint.Library.SPRequest.GetListsWithCallback(String bstrUrl, Guid foreignWebId, String bstrListInternalName, Int32 dwBaseType, Int32 dwBaseTypeAlt, Int32 dwServerTemplate, UInt32 dwGetListFlags, UInt32 dwListFilterFlags, Boolean bPrefetchMetaData,
    Boolean bSecurityTrimmed, Boolean bGetSecurityData, Boolean bPrefetchRelatedFields, ISP2DSafeArrayWriter p2DWriter, Int32& plRecycleBinCount)    
    at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName)    
    at Microsoft.SharePoint.SPListCollection.ItemByInternalName(String strInternalName, Boolean bThrowException)    
    at Microsoft.SharePoint.SPListCollection.GetListById(Guid uniqueID, Boolean bThrowException)    
    at Microsoft.SharePoint.SPListCollection.get_Item(Guid uniqueID)    
    at Microsoft.SharePoint.SPListCollection.GetList(Guid uniqueId, Boolean fetchMetadata)    
    at Microsoft.SharePoint.SPListCollection.GetById(Guid uniqueId)    
    at Microsoft.SharePoint.ServerStub.SPListCollectionServerStub.InvokeMethod(Object target, String methodName, ClientValueCollection xmlargs, ProxyContext proxyContext, Boolean& isVoid)    
    at Microsoft.SharePoint.Client.ServerStub.InvokeMethodWithMonitoredScope(Object target, String methodName, ClientValueCollection args, ProxyContext proxyContext, Boolean& isVoid)    
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.InvokeMethod(Boolean mainRequestPath, Object value, ServerStub serverProxy, EdmParserNode node, Boolean resourceEndpoint, MethodInformation methodInfo, Boolean isExtensionMethod, Boolean isIndexerMethod)    
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPathMember(Boolean mainRequestPath, String path, Object value, EdmParserNode node, Boolean resourceEndpoint, MethodInformation& methodInfo)    
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPath(Boolean mainRequestPath, String path, String pathForErrorMessage)    
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.Process()    
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.ProcessRequest()

    Hi
    XantosX5 ,
    Thank you for your posting!
    According to your description, I try to reproduce your scenario in my SharePoint Server 2013 environment.
    I create a lookup column in a list and create a workflow 2013 for the list. In the workflow, I add Send an email action. Then I display the lookup column in the body of the email as the below figure:
    When I start the workflow, it works fine.
    Have you installed
    the workflow manager 1.0 cumulative update 1 ? It can be the point.  If not, please install it.
    Thank you for your understanding and support.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Where can I find metadata for Power View reports created in sharepoint 2013.

    I am looking for what I would assume is the sql server tables that would hold the MDX (DAX) Queries for the power view reports.  Example my customers may create say 30 reports and I need to know quickly if an attribute I am changing is in those reports. 
    How can I find out what report(s) are using that attribute/measure?  Not sure that it matters but using sharepoint 2013 on premise and connecting to Analysis Services (molap).
    Ken Craig

    P.S.  if this is still not making sense create a power view report in SharePoint from a SSAS cube.  Save that power view report in SharePoint.  The power view report should
    have a couple of measures and 1 or 2 dimension.  Open the report just to confirm it is saved correctly.  Now go to SSAS and rename 1 of the measures or dimensions that you used, Save and rebuild your olap .  If it’s a calculated measure
    you just need to save olap.    Now open your power view report and notice that that measure/dimension you changed is no longer in the report. 
    IN one hand it is great that reports do not error and break; however, on the other hand the users might not know what measure/dimension changed and then be lost/mad because the report no longer
    works like they want.  In my opinion it would have been better if the power view broke with an error message that it cannot load because measure x does not exist than to just load fine. 
    In any case I need a method to know when a dimension/measure is modified what reports are using it.   Another example is this could even be a case where the dimension values are getting
    modified and we need to potentially make a update to any power view/pivot using this dimension as a filter? 
    Ken Craig

Maybe you are looking for

  • Please show me what to do per the security upgrades re firefox and ie7

    Hi, I didn't know where else to post this. I am just a home user. I have both Firefox 3.0 and Internet Explorer 7. I have windows premium home VISTA. I recieved the notice (portion below) and the instructions at sun links contained do not give direct

  • UWF recommended settings

    Hi, what are the recommended settings for a x86 system with 2/4GB RAM, an industrial SSD with 2 partitions D: (Protected by UWF) , D: unprotected for data ? The SSD has hardware protection against power loss. Now I have UWF on RAM (512 MB @2GB, 1024

  • Can One Internal Order assign to Multi company codes

    Hi sap Experts, 1. Can One Internal Order Assign to Two or More company codes. 2. Can One WBS Element Assign to Two or More Company codes. Asper my knowledge it is not pssible . if, Possible, How? Please give me clarification . Regards, Prabhakar

  • Urgent - Big POC: SAP Adapter Java API !

    Hi, I'm trying to get from an SAP BAPPI values using SAP Adapter Java API. I had tested at BEA and it worked fine. the code is: try { InitialContext ic = new InitialContext(env); // Create an object that provides the services established during confi

  • Netweaver developer studio(2.0.4) installation problem

    I have installed netweaver developer studio 2.0.4.When i tried to open studio it is not opening and  following exception is recorded in the log file. !SESSION - !ENTRY org.eclipse.core.launcher 4 0 Dec 16, 2004 11:15:42.942 !MESSAGE Exception launchi