Windows Azure Storage is a highly-scalable, durable, cloud-based storage platform providing four core services: Blobs, Tables, Queues, and Azure Drives.

learn more… | top users | synonyms

1
vote
4answers
220 views

Retrieving many rows using a TableBatchOperation is not supported?

Here is a piece of code that initialize a TableBatchOperation designed to retrieve two rows in a single batch: TableBatchOperation batch = new TableBatchOperation(); ...
0
votes
4answers
397 views

Abstract Azure TableServiceEntity

I want to abstract the implementation of my Azure TableServiceEntities so that I have one entity, that will take an object, of any type, use the properties of that object as the properties in the ...
3
votes
3answers
87 views

How to encode a URI to safely store in the RowKey of a TableServiceEntity?

I would really, really like to store a URI as the RowKey value in Azure Table storage. According to the documentation, RowKeys can't contain characters commonly found in URIs (/, \, #, ?). The ...
1
vote
3answers
131 views

Windows Azure Table Storage int field increment

I thinking about great improvement of Azure Table Storage. Is it possible to submit query to Table Storage with specific operation such as "increment entity field [name] by [value] where ...
0
votes
3answers
279 views

Azure Blob storage Download

I am learning Azure, I have successfully uploaded and list files in my containers. When I run the code below on my home pc everything works fine, no exceptions, however when I run on my work pc i ...
0
votes
2answers
104 views

Convention file names in MVC4

I'm reading this guide for how to use Azure table for data storage. But in this guide doesn't really tell you in which folder you should save the files. So I wonder if there's some up to date guide ...
0
votes
2answers
256 views

How to use HttpClient to query the AzureTable rest API

I am not able to figure out how to set the authorization in the step below static string _address = "http://Foo.table.core.windows.net/BackupEntries()?select=RowKey"; static void ...
0
votes
2answers
91 views

Incremental uploading of file using signals and slots

Before implementing this I would like to check if this will lead to undefined behaviour or race conditions. When uploading files to asure, this must be done in blocks. I want to upload 5 blocks in ...
0
votes
2answers
147 views

Azure perf counters not showing up in logs

I recently created custom performance counters in Azure however when i check the my tools (i used Cerebrata and Quest tools) or WAD Performance Counter tables I can't see them. However when i use ...
0
votes
2answers
253 views

Unzip folder in Windows Azure Blob Storage

I've read you can upload an application such as winzip to your blob storage to unzip a folder stored in blob storage, my question is how would I go about doing this also where would the contents of ...
0
votes
2answers
383 views

Synchronous paging against Azure Table Storage

I am new to working with Azure table Storage but I have being able to put together the code below that successfully allows my query to accept filterQuery (string) specified by the user -- for ex: ...
0
votes
2answers
449 views

Many tables or one table in Azure TableServiceContext file?

I'm working on creating an Azure application which would use around ten ttorage tables. I would like to adopt best practices but I am not sure if I should have just one single file with all the tables ...
0
votes
2answers
376 views

How do I extract “eTag” or “x-ms-request-id” from my Astoria DataContext response?

The Azure table whitepaper mentions that the x-ms-request-id is useful to send to Microsoft in the event there is an error working with the data. If I do have such an error, I'd like my try...catch ...
0
votes
2answers
771 views

Windows Azure Storage in VB: Not running in a hosted service or the Development Fabric

I'm trying to run an instance of the Azure Blob Storage in the Azure Visual Studio 2010 development environment, but keep getting the following error: System.InvalidOperationException: Not running in ...
0
votes
2answers
133 views

Azure development storgare service running as a windows service

I am working on a project that is a very large central media repository that uses Azure storage to house all of our external binaries that will be cosumed by 3rd party applications. We have the app ...

1 2 3 4 5