Skip to main content

How to use Shared Access Signature with queues from Windows Azure

In the last post we talk about how we can use Shared Access Signature with blobs. In this post we will see how we can use this feature with queues. First of all we should know that this is a new feature that appeared with the February release of the new version Windows Azure.
The new version of Windows Azure added to the Sharing Access Signature new functionalities for queues. The following features are supported for queues:
  • Add, remove, update delete queue message
  • Message Count of a queue
  • Access queue metadata
  • For a give queue we can set the following restrictions:
  • Time range – define the time interval when the user has access to the queue
  • Access permissions – what type of actions a user can make on the queue (read, peak, update/add/process message)
  • Server stored access policy – to generate offline Shared Access Signatures that can be very easily revoke or re-issues without having to change the account key
In the next example we will see how we can create a Shred Access Signature for a given queue. The first step is to get a reference to our queue.
CloudQueueClient queueClient = myAccount
                    .CreateCloudQueueClient();
CloudQueue myQueue = queueClient
                    .GetQueueReference("myQueue");
myQueue.CreateIfNotExist();
Next, we need to create the access policy for our queue. In our case we will permit the consumer to process the messages from our queue for an hour. In this example the consumer have an hour from the moment when we generated this access policy, but we could set also a start time from when this policy is available.
SharedAccessQueuePolicy sharedAccessPolicy = new SharedAccessQueuePolicy()
{
    Permissions = SharedAccessQueuePermissions
                    .ProcessMessages,
    SharedAccessExpiryTime =
                    DateTime.UtcNow +  TimeSpan.FromHours(1)
};
The shared access policy that we created need to be added to the queue. Each policy is identifying by a unique id. Based on this id we can remove a policy. After we set the permissions the consumer will be able to access our queue.
string policyIdentifier = "QueuePolicy1";
QueuePermissions queuePermissions=
    new QueuePermissions();
queuePermissions.SharedAccessPolicies.Add(
    policyIdentifier,
    sharedAccessPolicy);
myQueue.SetPermissions(queuePermissions);
Now, we have set the permissions on the queue. What we need now is the shared access signature. This signature is a token that need to be shared with the consumer. Using this token any consumer will be able to access our queue and process our messages.
string accessSignature =
          myQueue.GetSharedAccessSignature(
               new SharedAccessQueuePolicy(),
               policyIdentifier);
The only think that the consumer needs to do is to use the Shared Access Signature that we provided to generate a storate credentials. Based on this credential we can get a reference to the queue.
StorageCredentials storageCredentials =
     new StorageCredentialsSharedAccessSignature(    
          accessSignature);
queue = new CloudQueueClient(
               "http://myExampleQueue.queue.core.windows.net",
                storageCredentials)
                    .GetQueueReference("myQueue");
CloudQueueMessage messageFromQueue =
          queue.GetMessage(TimeSpan.FromMinutes(2));
In this post we saw how we can create a Shared Access Signature for a queue. It is very similar with the methods that were used for blobs. The big advantage to use Shared Access Signature to a queue is that we provide a limited time and a specific access type for a consumer of messages (or for a producer). In this way it is very easy to manage the persons that have access to the queue. Also using Shared Access Signature we can provide access only to a queue and not to all the storage account.
Tutorials about Shared Access Signature:
  1. Overview
  2. How to use Shared Access Signature with tables from Windows Azure
  3. How to use Shared Access Signature with blobs from Windows Azure
  4. How to use Shared Access Signature with queues from Windows Azure
  5. How to remove or edit a Shared Access Signature from Windows Azure 
  6. Some scenarios when we can use Shared Access Signature from Windows Azure

Comments

  1. Very useful set of tutorials. One question. I am running on a clean install of VS2012 with the latest VS2012 version of SDK 1.7 (1.7.1?). With this types like 'SharedAccessQueuePolicy' are not recognised. Any ideas?

    ReplyDelete
    Replies
    1. What version of .NET are you using in your project. You should use 4.0 for now. From what I know the support of Windows Azure in .NET 4.5 is not 100%.

      Delete
  2. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why Database Modernization Matters for AI

  When companies transition to the cloud, they typically begin with applications and virtual machines, which is often the easier part of the process. The actual complexity arises later when databases are moved. To save time and effort, cloud adoption is more of a cloud migration in an IaaS manner, fulfilling current, but not future needs. Even organisations that are already in the cloud find that their databases, although “migrated,” are not genuinely modernised. This disparity becomes particularly evident when they begin to explore AI technologies. Understanding Modernisation Beyond Migration Database modernisation is distinct from merely relocating an outdated database to Azure. It's about making your data layer ready for future needs, like automation, real-time analytics, and AI capabilities. AI needs high throughput, which can be achieved using native DB cloud capabilities. When your database runs in a traditional setup (even hosted in the cloud), in that case, you will enc...

Cloud Myths: Migrating to the cloud is quick and easy (Pill 2 of 5 / Cloud Pills)

The idea that migration to the cloud is simple, straightforward and rapid is a wrong assumption. It’s a common misconception of business stakeholders that generates delays, budget overruns and technical dept. A migration requires laborious planning, technical expertise and a rigorous process.  Migrations, especially cloud migrations, are not one-size-fits-all journeys. One of the most critical steps is under evaluation, under budget and under consideration. The evaluation phase, where existing infrastructure, applications, database, network and the end-to-end estate are evaluated and mapped to a cloud strategy, is crucial to ensure the success of cloud migration. Additional factors such as security, compliance, and system dependencies increase the complexity of cloud migration.  A misconception regarding lift-and-shits is that they are fast and cheap. Moving applications to the cloud without changes does not provide the capability to optimise costs and performance, leading to ...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...