Console App Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/console-app/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 04 Jan 2018 07:23:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.1 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 Console App Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/console-app/ 32 32 176351444 Dynamics CRM V9 / D365 connection Error Console or Custom Web Application http://microsoftdynamics.in/2018/01/04/dynamics-crm-v9-d365-connection-error-console-or-custom-web-application/ http://microsoftdynamics.in/2018/01/04/dynamics-crm-v9-d365-connection-error-console-or-custom-web-application/#comments Thu, 04 Jan 2018 07:23:00 +0000 http://microsoftdynamics.in/2018/01/04/dynamics-crm-v9-d365-connection-error-console-or-custom-web-application/ Last Night I Created a new Organisation and Connected it with console app an then I faced a strange issue in CRM v9 while connecting to Org Service with D365 through web API. It was perfectly working before that. If any one faces the below issue then try the solution given below.Issue : Connection to CRM...

The post Dynamics CRM V9 / D365 connection Error Console or Custom Web Application appeared first on Microsoft Dynamics 365 Blog.

]]>
Last Night I Created a new Organisation and Connected it with console app an then I faced a strange issue in CRM v9 while connecting to Org Service with D365 through web API. It was perfectly working before that. If any one faces the below issue then try the solution given below.

Issue : Connection to CRM V9 / D365 from console application or Custom Web application failed with exception

Error Observed:

Message : “One or more errors occurred.” 
Source : “mscorlib”




ROOT CAUSE:
Its all because of the latest update in the Microsoft TSL(Transport Security Layer) Protocol in SDK assemblies..Microsoft allowed the TSL connection 1.0  and 1.1 for the browsers or client to connect the CRM org.Now Microsoft will support only TSL 1.2 or above going forward(Reference) . If you are connecting your org with the old version of plugin registration tool , then you may face this issue
SOLUTION:
Include the below reference to your project(to global config file the line before where your client credentials is configured) and change the .Net framework to 4.6.1 and rebuild 
“ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12”

Code Snippet :

//Create an HTTP client to send a request message to the CRM Web service.
                using (HttpClient httpClient = new HttpClient(messageHandler))
                {
                    //Specify the Web API address of the service and the period of time each request
                    // has to execute.
                    httpClient.BaseAddress = new Uri(serviceUrl);
                    httpClient.Timeout = new TimeSpan(0, 2, 0);  //2 minutes

                 
                    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

                    //Send the WhoAmI request to the Web API using a GET request.
                    var response = httpClient.GetAsync(“api/data/v9.0/WhoAmI”,
                            HttpCompletionOption.ResponseHeadersRead).Result;

                    if (response.IsSuccessStatusCode)
                    {
                        //Get the response content and parse it.
                        JObject body = JObject.Parse(response.Content.ReadAsStringAsync().Result);
                        Guid userId = (Guid)body[“UserId”];
                        Console.WriteLine(“Your system user ID is: {0}”, userId);
                    }
                    else
                    {
                        Console.WriteLine(“The request failed with a status of ‘{0}'”,
                               response.ReasonPhrase);
                    }
                }

Happy Coding 😊

SOURCE : https://community.dynamics.com

The post Dynamics CRM V9 / D365 connection Error Console or Custom Web Application appeared first on Microsoft Dynamics 365 Blog.

]]>
http://microsoftdynamics.in/2018/01/04/dynamics-crm-v9-d365-connection-error-console-or-custom-web-application/feed/ 7 2761