Accessing Azure Blob storage from CRM Online Plugin - CloudFronts

Accessing Azure Blob storage from CRM Online Plugin

In this blog article, we will see how to access Azure Blob storage and create document in CRM by reading a specific blob document in Azure.

Steps:

  1. Get the following details of the Azure Blob storage
    1. Primary access key
    2. Blob container name
    3. File Name of the document
  2. Now we will write a sample plugin code which will read document from the Azure Blob storage and create an Annotation in CRM.

Since we cannot use external DLL in CRM online plugins, we are going to use the Web request to access the Azure blob storage. The HTTP web request has a bunch of headers along the above details to successfully access Azure blob storage.

For this, I have used a RestHelper and BlobHelper utility code files, which have all the operations of (a) making a web request and (b) performing blob operations.

The Helper files and the CRM plugin sample can be found in the below GitHub link: GitHub: CRM Online Integration with Azure Blob

Using this we can get the document and create Annotation in CRM using the below code:

#region Connect and fetch the data from Blob storage

// Replace the below values with actual details from your Azure Blob storage
string storageAccount = "blobstorageaccountname";
string filename = "filenamehere"; // testdocument.pdf
string containerName = "containernameHere"; //documents
string storageKey = "primaryaccesskiyeofazureblobstorageaccount";

BlobHelper blobHelper = new BlobHelper(storageAccount, storageKey);
KeyValuePair<byte[], string> data = blobHelper.GetBlobResponse(containerName, filename);
byte[] body = data.Key;
string contentType = data.Value;
#endregion

#region Create Annotation in CRM
string encodedData = System.Convert.ToBase64String(body);
Entity Annotation = new Entity("annotation");
Annotation.Attributes["objectid"] = new EntityReference(workOrder.LogicalName, workOrder.Id);
Annotation.Attributes["objecttypecode"] = workOrder.LogicalName;
Annotation.Attributes["subject"] = "Document from AX Integration";
Annotation.Attributes["documentbody"] = encodedData;
Annotation.Attributes["mimetype"] = contentType;
Annotation.Attributes["notetext"] = "REST API - Sample document from AX.";
Annotation.Attributes["filename"] = entity.GetAttributeValue<string>("cf_name");

Guid annotation = service.Create(Annotation);
#endregion

 


Share Story :

Secured By miniOrange