February 2010
Beginner
400 pages
11h 13m
English
Now that you have worked with the StorageClient, I think it is useful to understand what is happening behind the scenes. In the previous example, you created a container to store your images, called pictures. You will now create an application to list all the containers in your local Azure storage by constructing the raw HTTP request.
To interface with the Azure storage REST API, you will construct a request using the WebRequest classes. You need to do the following:
Make an HTTP request to a URL and port. The following URL, for example, is used to retrieve a list of containers held in Azure storage:
http://127.0.0.1:10000/devstoreaccount1/devstoreaccount1?comp=list ...