web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / xrm CRM Dynamics / CONNECTING TO DYNAMICS CRM ...

CONNECTING TO DYNAMICS CRM using c#

Bipin D365 Profile Picture Bipin D365 28,983 Moderator
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#

Comments

*This post is locked for comments