Hi !
1st time working with CRM/Dynamics ...
I'm trying to set up basic communication with our CRM webservice through our own ERP app. I want to do something similar to this :
https://msdn.microsoft.com/en-us/library/gg334708(v=crm.8).aspx
But every single tutorials or sample code I find have the same way to build up a connection : with the usage of this OrganizationServiceProxy class
private OrganizationServiceProxy _serviceProxy; _serviceProxy = new OrganizationServiceProxy(OrganizationUri, null ,serverConfig.Credentials, null)
From what I've read, OrganizationServiceProxy is found into the "Microsoft.Xrm.Sdk"
It seems to work when I coded it, aside from the most important ... I can't compile : this dll ( and all the dlls in the sdk ) are build up for .net framework 4.5, and we have to use the .net framework 4.0 for some of our clients.
When I try to download older sdk, I cant find the Microsoft.Xrm.Sdk.dll or any trace of the OrganisationServiceProxy class anywhere ...
Anyone could point me in the right direction ?