To give some work to my (workers) roles I put - into a queue - a message like:
"connectionString inputContainerName outputContainerName WorkToDo"
connectionString is an azure connection string as:
"DefaultEndpointsProtocol=https;AccountName=my_name;AccountKey=my_key"
It is a local app which put this message on a CloudQueue on azure.
And after this CloudQueue is read by Workers Roles in Azure.
Is it a good idea ?
Is this way secure ?