Category: AzureAzure
Azure
Copy Data Dynamically From Multiple Sources To Multiple Sinks In ADF
Admin, December 5, 2023158 Views
In this blog we are going to learn how to implement Dynamic Mapping to copy data from multiple sources to sinks in ADF. The below attached images show that there are 2 pair of source-destination tables. Now the source table is holding some data while the destination tables is blank, but its schema is similar […]
Read moreAccess SharePoint Online Data Using Postman Part 2
Inkey, March 11, 20222636 Views
Now, in this blog we will see how to access SharePoint online data. In this example, we will resize SharePoint Online image by using the Microsoft Graph API via SharePoint using the /_api/v2.0. We need to specify the size; large, small, and medium; in the request URL to resize the image that would give us […]
Read moreAccess SharePoint Online Data Using Postman Part 1
Admin, February 3, 20228533 Views
In this blog, we will show you how we can interact with SharePoint via Rest APIs and perform actions like adding, updating, deleting, and fetching data using Postman. We are using two operations SharePoint App Registration and Azure AD app (Graph API). The important factor is Authentication and Authorization while accessing SharePoint information. Generate […]
Read moreMake Azure Function App editable or read-only
Inkey, May 9, 201913302 Views
There are basically two ways to create and publish the Function App in the Azure. One of the ways is to create the Function App directly in the Azure and publishing it from there itself. The second way is to create the Function App in the Visual Studio and publishing it from the Visual Studio. […]
Read moreAzure FunctionApp Error: The binding type(s) ‘serviceBusTrigger’ are not registered[SOLVED]
Inkey, April 11, 201913795 Views
At times we are stuck with issues which look very clear but takes everything out of you to resolve them. Recently, I had faced one of them during the deployment of one of my FunctionApp at Azure. Actually, I had to deploy a FunctionApp from the VisualStudio. I deployed it successfully but while selecting the […]
Read moreUpload document to SharePoint from Microsoft D365 CE using C# Web API & manage SharePoint document metadata
Inkey, March 20, 20198216 Views
The integration of Microsoft D365 CE with SharePoint has enabled the document management in SharePoint precisely in the form of folders and subfolders, in a structured way. Today in this blog, let’s learn how we can upload the documents in SharePoint from the D365 CE using the Dot Net c# web API code with a […]
Read moreHandling Dead Letter Queue(DLQ) using Logic App
Inkey, February 11, 20199555 Views
In our previous blog, we have explained how to handle DLQ using the Azure Functions. Please refer: https://www.inkeysolutions.com/blogs/handling-dead-letter-queuedlq-using-azure-functions/ Lets now learn how to read the messages from the DLQ using the Logic App: First and foremost, we need to identify the message received in the Dead Letter Queue. So, the trigger step in the Logic […]
Read moreHandling Dead Letter Queue(DLQ) using Azure Functions
Inkey, January 31, 201927936 Views
Microsoft Azure Service Bus is a secure platform for transferring the messages across various platforms and applications. This is a reliable service for asynchronous data transfer using messages. Queues are one among the data structures used while transmitting the data across the cloud. Messages are stored in the queue until processed at the receiver’s end. […]
Read moreDebug the Azure Functions locally
Inkey, December 14, 20188309 Views
Today, the majority of the business have based their roots with Azure. Above all the benefits, the main attraction of the Azure functions is that it helps in the simplification of developing the applications. They can also be debugged locally to identify the errors or to know the sanity status of the function. This can […]
Read moreAdd an external assembly as a reference in the Azure function
Inkey, December 3, 20187274 Views
Let’s learn today, how to add an external assembly as a reference in an azure function with a small example. This will help you to reuse the already developed functionalities (i.e.,) if there is a requirement that some of the functionalities are needed inside the azure function, which are already developed in any of the […]
Read more