Posts

Showing posts from October, 2025

D365 F&O cloud to on prem file transfer using Azure blob storage

Image
  D365 F&O → Azure Blob Container → On-Prem System (file transfer) Scenario: Files generated in Dynamics 365 Finance & Operations (D365 F&O) are uploaded to an Azure Blob Container, and an on-premises system later downloads them using AzCopy . Architecture Flow X++ Code — Upload to Azure Blob Storage: using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.Dynamics.AX.Framework.FileManagement; using BlobStorageAssembly = Microsoft.WindowsAzure.Storage; public class InvoiceFileOnBlobStorage {     public static void main(Args _args)     {         str connectionString = CloudStorageAccount::Parse(             "DefaultEndpointsProtocol=https;AccountName=azureContainerAccountName;"             "AccountKey=7sU+VCk1sb1uCnWChsvwhxvRTY93mSnvhv7b+Aw==;"             "EndpointSuffix=core.windows.net"   ...