Skip to main content

#msdyn365bc - Test Base64 Conversion via Web Services?

Hi Readers,

As discussed in last article we will Test customization using web services that we developed this week for integration from #msdyn365bc or #MSDynNAV.

If you want to see other articles in this series please refer here.

We will need to use same website to Test this process. This process will require a Base64 Value for testing. 

Open Business Central and search and open Web Services Page.

Click on New, and add a new page (50002) that we created for API and name it attachmentwebservices.


Copy OData V4 URL. This URL we will use to Post data in Business Central.

If you have read the first article on this series, please download and Install Postman.

In Postman client, select New.

Let's try testing is GET Process. Select Get and then Paste URL in the field "Enter Request URL".

Then Select Authorization tab and select the appropriate Type of authentication. For Docker Environment I will select Basic Auth and key in username and password that is required for client connection.

Then Click Send and you will see Response in below tab as shown below. The Response will have fields which are available in page which in our case will have - 

  • Id  will have the ID stored in the record.
  • code  will have the code stored in the record.
  • Extension will have the file extension for the file that use input during add record.
  • outbit64value  will have the converted Bit64 value for the attachment stored in database.

In this case we will try to import/upload a pdf file. For that first we will get the bit64 value using Bit64 Guru website (as shown below).

We will copy the Bit64 value for the PDF and then open Postman again.

Choose - 

  • Post. to add new record.
  • Request URL to add URL that we have from webservice page.
  • Select Body - raw - Json to add details of Record. 
Add Values between { } with value pair combination like (as shown below) -

{
 "code": "",             --  Unique record Identifier.
"Extension": "",      --  File Extension in this case pdf.
"In64bitvalue" : ""  --  Bit 64 value that we copied from Base64 Guru website.
}

Then Click on Send and you will see a response back.


Open API Page in Business Central and we will see record added in business Central.


If you want to use webservice then you can continue with this. We will delete webservice that we created earlier as for next article we will not require that.


In next article we will start testing the customization using API.

If you would like to access the source code please refer GitHub.

Stay Tuned. Let me know your views as comment to this article.

Regards,
Saurav Dhyani

Comments

Popular posts from this blog

VIEW SERVER STATE permission on SQL Server?

Hi all, Sometime While trying to Login into a database we face an error message as shown below. --------------------------- Microsoft Dynamics NAV Classic --------------------------- You cannot start Microsoft Dynamics NAV Classic because you do not have the VIEW SERVER STATE permission on SQL Server. Contact your system administrator. --------------------------- OK    ---------------------------

BC 21 and Higher - PowerShell Cmdlet (Replacement of Business Central Administration).

Hi Readers, As discussed in last article about deprecating of Business Central Administration, there are few common actions that we use in administration till Business Central 20. For our on-prem customers, we will still require doing activities. As Microsoft suggest we need to start using PowerShell cmdlet.    Let's see how to do those via PowerShell, or Administration Shell. I will be keep adding commands as you comment to this article.

Send Mail with Attachment From Navision.

Hi all, We have seen how to save a report into PDF and how to send mail to a customer. Let's link these two post in one i.e. Mailing statement to a customer into PDF Format. This article is part of the Series. Please Refer  Table of Content here . If you have the old objects set let me brief you what I will be changing -