CONNECTING TO DYNAMICS CRM using c#
Views (49)
CREATE A CONNECTION STRING The connection string is used to instantiate a CrmConnection object, which in turn can be used to instantiate an OrganizationService object or a CrmOrganizationServiceContext object. A CrmConnection can also be created independently of the app.config file and constructed inline as follows. for V9.x add below line of code for security reason ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; var connection = CrmConnection.Parse(“Url=http://crm.contoso.com/xrmContoso; Domain=CONTOSO; Username=jsmith; Password=passcode;”); Please… Continue reading CONNECTING TO DYNAMICS CRM using c#

Like
Report
*This post is locked for comments