Windows Azure Storage is a highly-scalable, durable, cloud-based storage platform providing four core services.

learn more… | top users | synonyms

1
vote
2answers
33 views

Can't programmatically set permissions to blob container in Azure Storage

After creating a blob container with CreateIfNotExists(), I immediately call SetPermissions() to allow users public access to the blobs in the container, but not to the container itself. Like so: ...
0
votes
1answer
18 views

Azure Queues: How to determing when the message invisibility timeout going to expire

In Azure Queues, Is there a way to find out when the message invisibility timeout going to expire. I want to check to see if the timeout's going to expire and extend if required.
1
vote
0answers
101 views

Code first windows azure connection string

Here is my connection string: <add name="FollowUpDatabase" connectionString="Server=tcp:yncm4e4uxp.database.windows.net,1433;Database=[FollowUp];User ...
0
votes
2answers
55 views

Setup a partition and row key for user account database in Windows Azure

I'm just a little bit stumped at the moment on a small issue. I want to setup an accounts table where all the registered users data lives. This table will contain stuff like email, addresses, SRP ...
1
vote
1answer
131 views

Mongodb worker role throws System.IO.FileNotFoundException

I have an Azure cloud project which makes use of mongodb worker roles. When running in the local emulator everything works fine, however when I deploy to an Azure staging area, the mongodb worker ...
0
votes
1answer
118 views

Photos upload to Azure via WCF Services

I have a simple project to upload pics and Images to Azure, I have these strategies WINDOWS PHONE -> WCF SERVICE -> AZURE SQL WINDOWS PHONE -> WCF SERVICE -> AZURE STORAGE WINDOWS PHONE -> AZURE ...
3
votes
1answer
457 views

Where is the “tableClient.CreateTableIfNotExist” in AzureStorage library v2?

In Windows Azure Storage, we used to do this to create a table : var tableClient = account.CreateCloudTableClient(); tableClient.CreateTableIfNotExist(TableName); I just downloaded the last version ...
2
votes
1answer
121 views

what type of azure blob should I use for static content

I want to store my static website in azure blobs. My question is, what type of blob (Page-Blob or Block-Blob) should I use for images and javascript files?
0
votes
1answer
36 views

How to store different types with the same partitionkey in the same table on windows azure table?

I have two related entities. Fruits.Apple Cars.Bmw Those entities belongs to the same user and I want to use the userId as the partitionKey for both entities. I am storing them in the same ...
1
vote
0answers
106 views

ServiceBus WorkerRole DiagnosticMonitor Error

I have a WebRole and 2 ServiceBus WorkerRoles running, During the OnStart of the roles I get the following Exception: [System.ArgumentOutOfRangeException] invalid syntax for container log4net ...
0
votes
0answers
30 views

Azure queue issue [duplicate]

Possible Duplicate: Azure queues Windows Phone There are a lot of example how to add message into Queue on Windows Phone 7. But there are no examples how to get message. As I can understand ...
0
votes
2answers
222 views

Mount azure drive for read

I create a WCF service to upload files to an azure drive, How can i read the drive files from other web role without mount a snapshot?
2
votes
1answer
544 views

Generic code for handling Azure Tables concurrency conflicts?

I'm looking at doing some updates into Azure Storage Tables. I want to use the optimistic concurrency mechanism properly. It seems like you'd need to do something like: Load row to update, possibly ...
2
votes
2answers
430 views

Is it possible to change an Azure queue message invisibility timeout without posting the data?

With the 1.6 SDK (Version 2011-08-18) you can change the invisibility timeout of a queue message. However, reading the REST documentation, it would seem to show that you have to post back the message. ...
1
vote
1answer
309 views

How to limit the size of Azure Table Storage for logs?

Is it possible to limit the size of an Azure Table Storage table? I'm using it for storing logs. Also how can I do something like, when the limit is reached, the old entries are deleted to make space ...
1
vote
1answer
228 views

Does Azure Queue Storage behave the same as MSMQ?

I have a few applications that I have built that leverage MSMQ on a Windows Server. I would like to port these to Azure-based Web Applications which helps me with some of the security and ...
1
vote
1answer
814 views

Avoiding the new upsert in Azure Table Storage

Steve Marx writes about new extension methods to perform upserts in Azure Table Storage as part of the new storage protocol version here: ...
0
votes
2answers
164 views

good azure storage client library?

Is there one? (for .net) I see msft samples StorageDotNEt and StorageRest. These dont do if-match right and they dont appear to do paged queries Lokad has a library but does funky stuff to spread ...
1
vote
2answers
2k views

Azure Blob: “The condition specified using HTTP conditional header(s) is not met”

I got this exception when I run my application. It happens also in the real Azure blob storage. I've caught with Fiddler the request that creates this problem: GET ...
0
votes
3answers
3k views

Sorrow, Rage and Despair setting up Azure storage

I'm trying to use Azure storage locally. I have a data source class called ExpenseDataSource: public class ExpenseDataSource { private static CloudStorageAccount storageAccount; private ...