List Blob in Azure Container Let’s see how we can list blob which are available in Azure Container, Create a mule service which will accept container name as query parameter Pass same param to Azure Storage Connector and select List blobs in container operation Transform the output in some more readable form…
Read MoreDownload BLOB message Let’s create a Mule flow which download the BLOB message from Azure container Create a HTTP listener Next we will store the blobname which we want to download from container Add transformation to set the blobname and the container name In Azure Storage connector we can pass the…
Read MoreDelete BLOB from Container To Show how we can delete blob from Azure. Let’s create a Mule flow which delete the JSON message in BLOB container Create a HTTP listener Next we will store the blobname which we want to delete from container Add transformation to set the blobname and the container…
Read MoreUpload BLOB to Azure Container Let’s create a Mule flow which upload the JSON BLOB message to Azure BLOB container. Create a HTTP listener to accept JSON request Next we will store the request in local file We will also accept filename as query param which will be used as Name of…
Read MoreDequeue multiple message from Azure Queue Let’s see how we can Dequeue multiple message from Azure Queue. Create a mule service which will poll the Azurequeue every 10 seconds and print the messages in Logger. For testing we can push messages to Azure Queue In Mule flow set Polling frequency and add logger…
Read MoreDequeue message from Azure Queue Lets create a mule service which will poll the Azure queue every 10 seconds and print the same in Logger. For testing we can push message to Azure Queue In Mule floe set Polling frequency – Azure Storage configuration – put the queue name Payload we…
Read MoreAdd message to Azure Queue To Show how we can add message to Azure Queue. Let’s create a mule service which accept a JSON request as To convert the incoming JSON to String we can use Byte Array To String and later use transform activity to convert message payload to Azure Storage –…
Read MoreCreate Table in Azure Let’s create a mule flow which create Azure Table – for this we first configure HTTP listener to accept URI parameter – tablename as input. Will pass the same name to Azure Storage Connector Last add Set Payload activity to set Payload which will be return to caller…
Read MoreCreate Queue in Azure Let’s create a mule flow which create Azure Queue – for this we first configure HTTP listener to accept UIR parameter – queuename as input. Will pass the same name to Azure Storage Connector and Last add Set Payload activity to set Payload which will be return to caller …
Read MoreCreate Container in Azure Container is a place holder in Azure which can contain the Blob which we want to store. Let’s create a mule flow which create Azure container – for this we first configure HTTP listener to accept uri parameter – containername as input. Will pass the same parameter to Azure…
Read More