Dynamics 365 - IOrganizationService / Web Api

With the release of CRM Dynamics 365, Microsoft officially abandoned the soap endpoint in 2011 and is actively promoting its web Api.

Deprecated Microsoft Dynamics CRM 2011 Endpoint

What I would like to know is how it affects my CRM connections.

I am currently using the Tooling library to instantiate OrganizationServiceProxy using the CrmServiceClient class and connection string. Will this change since I have many hundreds of thousands of lines of code that all IOrganizationService links.

Any help would be appreciated

+6
source share
3 answers

Theoretically, this will be a transparent update, and you will only need to upgrade to the latest versions of the package and rebuild your projects into theory. :)

+2
source

I assume this is C #, not JavaScript using the 2011 endpoint. Microsoft has abandoned Xrm.Client in favor of Microsoft.Xrm.Tooling.Connector .

You can replace your connection with Xrm.Tooling.Connector , and usually your code will work

https://msdn.microsoft.com/en-us/library/jj602970.aspx

0
source

The CrmServiceClient class will work, I use this class for all my WCF integration services with Dynamics 365. This depreciation will mainly affect scripts that use old REST and SOAP calls.

As a good practice, you can always use libraries from the latest SDKs and rebuild projects to ensure that your codes are updated.

0
source

Source: https://habr.com/ru/post/1012100/


All Articles