Console Application Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/console-application/ Microsoft Dynamics CRM . Microsoft Power Platform Fri, 24 Apr 2020 14:32:22 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 Console Application Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/console-application/ 32 32 176351444 Dynamics CRM V9 / D365 Connection through Console without Prompt http://microsoftdynamics.in/2018/01/16/dynamics-crm-v9-d365-connection-through-console-without-prompt/ Tue, 16 Jan 2018 07:40:00 +0000 There are 2 major steps involved in the process. Register the application with your Azure subscription Build the Console Application Register the application with your Azure subscription Refer this thread for detailed info Build the Console Application  Refer this thread for detailed info You need to change only the below authentication method in step 3...

The post Dynamics CRM V9 / D365 Connection through Console without Prompt appeared first on Microsoft Dynamics 365 Blog.

]]>
There are 2 major steps involved in the process.
  • Register the application with your Azure subscription
  • Build the Console Application
Register the application with your Azure subscription

Build the Console Application 
You need to change only the below authentication method in step 3 rest remains same

Pass user credentials with service URL and client id in Authentication Context

string authority = "https://login.microsoftonline.com/68e86d2-65ed-4666-8ee-f8ce245d20de/oauth2/authorize";
AuthenticationContext authContext = new AuthenticationContext(authority, false);
var credentials = new UserCredential("shashank@s.onmicrosoft.com", "pas@wrd1");
//without prompt
AuthenticationResult authResult = authContext.AcquireToken(serviceUrl, clientId, credentials);
authHeader = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);

You can have a look at my code here :Sample Code

Happy Coding and CRMing 😊


SOURCE : mscrm.com

The post Dynamics CRM V9 / D365 Connection through Console without Prompt appeared first on Microsoft Dynamics 365 Blog.

]]>
2743
Add value in option set – Status Reason C# http://microsoftdynamics.in/2018/01/07/add-value-in-option-set-status-reason-c/ Sun, 07 Jan 2018 14:49:00 +0000 Reference to be used – using Microsoft.Crm.Sdk.Messages; var response = ((InsertStatusValueResponse)service.Execute ( new InsertStatusValueRequest {     AttributeLogicalName = “statuscode”,     EntityLogicalName = “task”,     Label = new Microsoft.Xrm.Sdk.Label(“Auto Closed”, 1033),     StateCode = 1 //Status: 0 active & 1 inactive } )).NewOptionValue; Happy Coding 😊

The post Add value in option set – Status Reason C# appeared first on Microsoft Dynamics 365 Blog.

]]>
Reference to be used – using Microsoft.Crm.Sdk.Messages;
var response = ((InsertStatusValueResponse)service.Execute
(
new InsertStatusValueRequest
{
    AttributeLogicalName = “statuscode”,
    EntityLogicalName = “task”,
    Label = new Microsoft.Xrm.Sdk.Label(“Auto Closed”, 1033),
    StateCode = 1 //Status: 0 active & 1 inactive
}
)).NewOptionValue;

Happy Coding 😊

The post Add value in option set – Status Reason C# appeared first on Microsoft Dynamics 365 Blog.

]]>
2756
Connect to Dynamics CRM / D365 WebApi v9 from Console Application C# http://microsoftdynamics.in/2018/01/04/connect-to-dynamics-crm-d365-webapi-v9-from-console-application-c/ Thu, 04 Jan 2018 11:14:00 +0000 http://microsoftdynamics.in/2018/01/04/connect-to-dynamics-crm-d365-webapi-v9-from-console-application-c/ There are 2 major steps involved in the process. Register the application with your Azure subscription Build the Console Application Prerequisites CRM / D365 Trial Organisation Register the application with your Azure subscription Step 1 Login to azure portal  https://portal.azure.com with your CRM credentials Step 2 Click on Azure Active Directory – App registrations  Step 3 Click...

The post Connect to Dynamics CRM / D365 WebApi v9 from Console Application C# appeared first on Microsoft Dynamics 365 Blog.

]]>
There are 2 major steps involved in the process.
  • Register the application with your Azure subscription
  • Build the Console Application

Prerequisites

CRM / D365 Trial Organisation

Register the application with your Azure subscription


Step 1 Login to azure portal  https://portal.azure.com with your CRM credentials

Step 2 Click on Azure Active Directory – App registrations

 Step 3 Click on to New application registration

 Step 4 Enter Your Desired Name and Redirect URL but select Native in Application type and click on create Button

Step 5 After some some time you will be able to see your created apps then click on it

Step 6  Then click on Required permissions under API Access and then click on Add

Step 7  Click on Select API and then Select Dynamics CRM Online and Click on Select

Step 8  Select Access CRM Online as organisation users checkbox and click on Select Button

Step 9 Then click on Done

Build the Console Application 

Step 1 Navigate to Microsoft Url for sample for web API or click here quick start sample and extract to your desired location

Step 2 Open the Solution file in vs and you have to edit the code by reading the comment with TODO tag

Step 3 Update the service URLwith your current CRM organisation

Eg:

        private static string serviceUrl = "https://sa##x.crm8.dynamics.com";   // CRM Online

To get the client ID go to your app in Azure and copy the GUID specified for Application ID

To get the client ID go to your app in Azure and copy the GUID specified for Application ID and redirecting URL to Home Page URL ( will be same as you gave at the time of app creation in Redirecting URL)

Your Code should look like below

private static string serviceUrl = "https://sablecafex.crm8.dynamics.com";   // CRM Online
private static string userAccount = null;  //CRM user account
private static string domain = null;  //CRM server domain
private static string clientId = "e5cf0024-a66a-4f16-85ce-99ba97a24bb2";
private static string redirectUrl = "http://localhost";  //e.g. "http://localhost/SdkSample"

Step 3 Update Authentication Context with direct Authorisation Endpoint URL

To get Authorisation Endpoint URL go to your app in Azure click on Endpoints button

And copy the OAUTH 2.0 Authorization Endpoint URL

Replace the previous lines for getting authority information and update with the below code
string authority = "https://login.microsoftonline.com/e5cf0024-a66a-4f16-85ce-99ba97a24bb2/oauth2/authorize";
AuthenticationContext authContext = new AuthenticationContext(authority, false);

Your Code should look like below

//AuthenticationParameters ap = AuthenticationParameters.CreateFromResourceUrlAsync(
//        new Uri(serviceUrl + "api/data/")).Result;
//AuthenticationContext authContext = new AuthenticationContext(ap.Authority, false);

string authority = "https://login.microsoftonline.com/e5cf0024-a66a-4f16-85ce-99ba97a24bb2/oauth2/authorize";
AuthenticationContext authContext = new AuthenticationContext(authority, false);

AuthenticationResult authResult = authContext.AcquireToken(serviceUrl, clientId, new Uri(redirectUrl), PromptBehavior.Always);

The above code is connection with Prompt dialogue, for connection without prompt see my another thread – without prompt

Step 4 Rebuild

 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”

for More details on it refer to my another thread here 

Step 5 Rebuild Your code and run it you will be prompted with sign in page enter your credentials

Step 5 Press on Accept

 And Your are done

You can have a look at my code here : My Sample Code

Inspired By : Nishant Rana’s Weblog

Happy Coding and CRMing 😊

SOURCE : mscrm.com

The post Connect to Dynamics CRM / D365 WebApi v9 from Console Application C# appeared first on Microsoft Dynamics 365 Blog.

]]>
2760