We are migrating to CRM 4.0 from 3.0. In this process, we have had our data migrated from our existing CRM 3.0 instance to a new CRM 4.0 instance.
This has been going all well and good until I got to the point of installing our existing callouts and workflow DLLs.
I know that I need to r开发者_如何学编程ewrite them, but our migration schedule does not have time alloted for this.
Can anyone point me towards how to install my CRM 3.0 Callouts and Workflow DLLs so that I see them in CRM 4.0? My Google-Fu for this subject has failed me.
Edit: At this point, I am about resigned to the fact I need to spend the weekend rewriting them as plugins. If anyone can point me to a good resource that walks through taking a 3.0 callout and converting it into a plug, I'd enjoy that too. Everything I've found on 4.0 plugins assumes you are creating a new one.
I don't believe there's a method to natively register 3.0 plugins after upgrading. 3.0 plugins will work in 4.0, but only because CRM wraps them in the upgrade process and basically creates a new DLL with all your 3.0 callouts in it. If you didn't upgrade in place, I think you'll just have to recreate them.
I did not have any issues when I upgarded from CRM 3.0 to CRM 4.0.
CRM 3.0 callouts were writen in .NET 1.1. I opened, converted and compiled them with Visual Studio 2005 (.NET 3.0 installed on the machine too). I used the Plugin Registration tool to register complied callouts with the CRM 4.0. I don't remember if I did any miner modifications but I know that everything went smoothly.
I hope this helps
CRM 3.0 callouts should generally work in 4.0, but only for the default organization of a multi-tenant configuration: http://msdn.microsoft.com/en-us/library/cc151075.aspx
精彩评论