Category Archives: Azure

Dynamics 365 CE integration with Shopify using Webhook

Webook4

Introduction In a previous article, we delved into valuable resources and integration options for Dynamics 365 CE and Shopify. Today, we will discuss integration process utilizing Shopify Webhook and Azure Function. Details As we are going to discuss approach for integration using Webhook and Azure function so let’s first understand what is Webhook and Azure Function. Webhook Webhook is based… Read more »

Connecting Azure Functions with PostgreSQL

Introduction: In the world of cloud computing, Azure Functions have become a popular choice for developing serverless applications. These lightweight, event-driven functions offer scalability and cost-efficiency, making them an ideal solution for various use cases. Recently we got one such requirement where we need to read PostgreSQL database view and need to update data in Dynamics 365. We used Azure… Read more »

Download File and Upload to Azure Blob Storage

Requirement Let’s say we have requirement to download file from website and upload it to Azure Blob Storage. In our case we are using excel file but you can do it for other files as well. Details First we need to setup Storage account and blob container in Azure. Once you have setup it, you need to get following details:… Read more »

Using Configuration with Azure Function

DynamicsAzure

Introduction Sometimes we need want to store configuration data in our Azure Function which we can be referenced in our Azure Function, these configuration data includes storing server urls, connection strings, credentials etc. This is very useful when we want to deploy our Azure function in different environment, we don’t need to do any changes in our Azure function code,… Read more »

Developing Scheduler for Dynamics 365 CE using Azure Function Part 2

DynamicsAzure

Introduction This is our second article about developing scheduler for Dynamics 365 CE using Azure Timer Function. In earlier article we developed a simple sample Azure Timer Function, now we are going to discuss how to deploy and configure scheduling for the Azure Timer Function. Solution Let’s first discuss how to schedule Timer to run it on specified times. Based… Read more »

Developing Scheduler for Dynamics 365 CE using Azure Function Part 1

DynamicsAzure

Introduction Sometimes we require to develop scheduler job for Dynamics 365 CE online. Currently we have different options to implement scheduler for Dynamics 365 CE online for example using workflow, Power Automate, Azure etc. In this article we are going to discuss how we can use Azure time trigger to develop scheduler for Dynamics 365 CE. Let’s say we have… Read more »

The request channel timed out while waiting for a reply after 00:01:59.9687488

Introduction This post is about “The request channel timed out while waiting for a reply after 00:01:59.9687488. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.” error, we got this error in our Azure function where… Read more »

Dynamics 365 CE and Azure Function Part 5

DynamicsAzure

Introduction This is our last article in the series of Dynamics 365 and Azure function integration. In earlier articles, we discuss how we can delete blob storage after our azure function trigger executed. Now we are going to discuss how can we trigger azure function from Microsoft Flow. You can refer our earlier articles from following links Dynamics 365 CE… Read more »

Dynamics 365 CE and Azure Function Part 4

DynamicsAzure

Introduction This is our fourth article in the series of Dynamics 365 and Azure function integration. In earlier articles, we discuss how we integration Dynamics 365 with Azure, using hard-coded credentials and using the server to server authentication. Now we are going to discuss how can we delete Azure blob after it is processed. You can refer our earlier articles… Read more »

Dynamics 365 CE and Azure Function Part 3

DynamicsAzure

Introduction This is our third article in the Dynamics 365 and Azure series, in first article we discussed basic introduction about azure function and set azure function app. In second article we discussed how we can connect to Dynamics 365 organization using hard coded user name and password. Today we are going to discuss how we can get rid of… Read more »