Posts

Showing posts from October, 2016

Deleted Forms Cause Error in Publish

During recent CRM upgrades I started getting the following error on publish. systemform With Id = {Guid} Does Not Exist After looking through the database it was discovered that there were upgraded forms that had been marked with the component state of deleted which were causing the error. Deleting those rows marked with the component state of 2 (deleted) allowed for publishing. *** Disclaimer: Modifying CRM data directly can void your warranty. Use at your own risk. *** delete from systemformbase where componentstate = 2

Repost: Loading Assemblies from Anywhere into a New AppDomain by 2012 by Marius Bancila

If you are interested in loading assemblies into a worker domain which do not live in the base directory of that worker domain, check out this great article with code. http://www.codeproject.com/Articles/453778/Loading-Assemblies-from-Anywhere-into-a-New-AppDom