Skip to main content

Add Self Signed (SSL) Certificate to Trusted Root Certification Authority - NAV 2016

Hi Everyone,

In this article we will see Steps to Add SSL Certificate to Trusted Root Certification Authority in system.

In previous blog we have seen how to Create and Export new SSL Certificate, refer here:

https://kunalhuria.blogspot.com/2021/11/microsoft-dynamics-navision-2016-create.html

Basically these are the two ways to Add Certificate to Trusted Root Certification Authority:

First Way:- 

Step-(1) Open the Microsoft Management Console by (Start > MMC) or Press Win + R key (Run command) and type mmc.exe and click on OK button.

Step-(2) Choose File then click on Add/Remove Snap-in in the standalone tab, choose add

Step-(3) Now, Choose the certificates and click on Add button as shown below:

Step-(4) In the wizard, choose the Computer Account >> Local Computer and press finish to end the wizard.

Step-(5) Close the Add/Remove Snap-in dialog box now.
Step-(6) Navigate to Certificates (Local Computer) and choose the Trusted Root Certification Authorities store to import the certificate.
Step-(7) Right click on the certificates option under Trusted Root and choose All Tasks >> Import.
Step-(8) Follow the wizard and provide the certificate file you have.

Second Way:- 

Step-(1) Generate and Export SSL Certificate firstly:
Refer here:- 
https://kunalhuria.blogspot.com/2021/11/microsoft-dynamics-navision-2016-create.html

Step-(2) Click on Certificate file with .pfx extension to Install and then select Local Machine >> Next >> Next and Enter the password then again click on Next button.
Step-(3) Choose the Trusted Root Certification Authorities by clicking on Browse button, click on Next then Finish button.
Certificate is now successfully added to the Trusted Root Certification Authority.
Note:- For environments with more than one front-end, these instructions must be followed on all front-end servers/NAV RTC systems.

Thanks for Reading!!!
Happy To Help :)

Comments

Post a Comment

Popular posts from this blog

Flow Custom field to G/L Entry and other Posted tables : From Purchase Order to Posted Purchase invoice

Hi Readers, In this blog we will see how we can transfer data from " Purchase Header" to "Purchase Invoice Header" & "G/L Entry" table in Business Central. In this example, will create "Remarks" field on Purchase Header table and after posting, flow it to Purchase Invoice Header & G/L Entry tables: Firsly, create required fields ("Remarks") in below mentioned tables by creating table extensions: Purchase Header (38) Purch. Inv. Header (122) Gen. Journal Line (81)  G/L Entry (17) For the Purch. Inv. Header table, you can just create copy the field from purchase header and paste it in  Purch. Inv. Header  table. If the field ID No. is same for that field for both the tables then you don't have to code i.e, it automatically transfer that field data from Purch. Header to Purch. Inv. Header . Step-(1)   tableextension   50104  "Purchase Header Ext"  extends  "Purchase Header" {      fields   ...

Amount In Words in Navision / Business Central

Hi Guys, In this article, we will see how to display amount in words in Microsoft Dynamics Business Central. Here, I am taking an example of Report object  which is widely used in Navision for converting decimal amount field into words. Procedure :-  Step-1 Declare the following Global Variables :         RepCheck:  Report  "Check";         NoText:  array [ 2 ]  of   Text ;         AmountInWords:  Text ; where, (1) RepCheck is a variable of  Report DataType Named as " Check " which is 1401. (2) NoText is a variable of DataType " Text " with array Dimension value as 2 which is defined as shown above. (3) AmountInWords is a variable of DataType " Text " which will store final result of amount in words. Step-2 Now, add the following code in OnAfterGetRecord() trigger of DataItem containing that decimal field value. So in my cu...

The Txt2Al Conversion Tool: How to Export Dynamics NAV objects (.txt) and converting to AL

Hi folks, In this article, I will show you how you can use Txt2Al conversion tool that is the part of NAV 2018 and Dynamics 365 Business Central On-Premise. Using this Txt2Al conversion tool you can take existing Dynamics NAV objects that have been exported in .txt format and convert them into the new .al format and use these .al format file directly using Visual Studio Code to develop/build extensions for Dynamics 365 Business Central. Converting the NAV objects consists of following 2 steps: 1. Exporting the objects from C/SIDE [Either from Development Environment or using PowerShell Command] 2. Converting the objects to the new syntax. You can find Txt2Al tool in following location if you installed Dynamics 365 Business Central On-Premise on your machine: C:\Program Files (x86)\Microsoft Dynamics 365 Business Central\140\RoleTailored Client \Txt2Al.exe Steps to use the Txt2Al conversion tool:  Reference Step 1:  Compile your Dynamics NAV DB Step 2: ...