Hello,
After you install Rollup for MSCRM, you should add below lines for CRM to work properly. Especially workflows encounter problem (you can not publish workflows) if you do not add below lines:
|
<authorizedType Assembly=”mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089″ Namespace=”System” TypeName=”Void” Authorized=”True”/>
<authorizedType Assembly=”mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089″ Namespace=”System” TypeName=”Math” Authorized=”True”/> <authorizedType Assembly=”mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089″ Namespace=”System.Globalization” TypeName=”CultureInfo” Authorized=”True”/> <authorizedType Assembly=”Microsoft.Crm.SdkTypeProxy, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35″ Namespace=”Microsoft.Crm.SdkTypeProxy” TypeName=”CrmService” Authorized=”False”/> <authorizedType Assembly=”Microsoft.Crm.SdkTypeProxy, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35″ Namespace=”Microsoft.Crm.SdkTypeProxy.Metadata” TypeName=”MetadataService” Authorized=”False”/> |
These lines shoud be added under <authorizedTypes> node which is a child node of <System.Workflow.ComponentModel.WorkflowCompiler>.
The source of this information can be found here.