I have been struggling with this concept for a while. I am attempting to come up with a loosely coupled Azure component design that is completely scalable using Queues and worker roles, which dequeue
According to MSDN, the Message payload may extend up to 8KB (8192 bytes): The AddMessage method adds a message to the back of the queue.
I have an existing Workflow engine that picks up xml messages from an Azure queue. The XML piece has the information on the WorkflowAction executed, which in turn is passed to and processed in the act
I need some help in understanding the thread safety in azure CloudBlobClient, CloudQueueClient and CloudBlob classes.
I\'m working on an Azure based project for some research and have been running into some issues when deleting messages from a CloudQueue instance. The code is fairly straightforward, so I\'m a bit baf
I\'m trying to build an event driven Azure Queue where a event is to fired every time a message is put in the Azure Queue. With AzureXplorer I see that the messages are put in the Azure Queue properly
I have written and successfully deployed a test app to the azure cloud, but I am lost now that I have added a queue to the application.
In Windows Azure it\'s possible to create public Blob Container. Such a container can be accessed by anonymous clients via the REST API.
I\'m dipping my toes into Windows Azure, and I\'m running into something that has to be simple, but I just can\'t see it.
I have a class library that is shared between multiple Role projects in my solution.Two of these projects are a Web Role and a Worker Role.