Posts

Showing posts from April, 2025

Azure Integration Service: Event Driven Architecture with sFTP and SMB

Image
Azure Integration Service: Event Driven Architecture with sFTP and SMB In today’s interconnected enterprise environments, seamless data exchange between vendors, cloud services, and on-premises systems is critical. This blog outlines a comprehensive integration solution that automates the flow of employee timesheet data from external sources to invoice generation and multi-system distribution, using Azure Integration Services and Azure Storage capabilities. The solution demonstrates how a secure, event-driven architecture can be implemented to handle timesheet processing and invoice distribution across multiple stakeholders. Leveraging Azure Storage SFTP, Event Grid/Event Hub, Logic Apps, Azure Functions, and NFS-enabled file shares, this design supports both modern cloud-native applications and traditional on-premises systems. This guide is divided into three parts, focusing on configuring secure file exchange, orchestrating integration workflows, and enabling hybrid access to generat...

Logic App Storage Table CRUD Operations

Image
Logic app Storage Table Operations with REST API:     Storage Account Name ehaseprodintcorplast Storage Table Name dkpoc Authentication managed identity (add Storage Access Control to “ Storage Table Data Contributor ”  role to your logic app)   Storage Table look like   ·          Read All rows {   "type" : "Http" ,   "inputs" : {     "uri" : "https://<storagename>.table. core.windows.net/dkpoc" ,     "method" : "GET" ,     "headers" : {       "Accept" : "application/json; odata=nometadata" ,       "Content-Type" : "application/xml" ,       "x-ms-version" : "2019-07-07"     },     "authentication" : {       "type" : "ManagedServiceIdentity" ,   ...