Reputation: 1831
I'm working with a project right now using a device with a Windows Mobile 6.5.3 in it. In my Visual Studio 2008 Project i'm trying to make use of CRM 4.0 sdk dll so I could call the CRM services. The problem now is that microsoft.crm.sdktypeproxy.dll or microsoft.crm.sdk.dll is having conflict with the other assemblies that's why I cannot build or run my project. My target framework is .Net 3.5
Error Message:
Main Issue:
Solution I Tried:
Note: 1. Where using these dll because our CRM setup does not allow us to login in the crm using passport authentication. 2. Since our windows mobile device is not able to login to crm using windows authentication. I need to find a way to call the CRM service using the dll.
Upvotes: 0
Views: 218
Reputation: 15128
My suggestion in this situation is always to create a C# Web Service that will act as a bridge between CRM and your Windows Mobile application.
The Web Service use .NET so you can easily connect to CRM, and because is a Web Service you can consume it by any platform (including Windows Mobile)
Upvotes: 1