Tagged Questions
0
votes
2answers
27 views
Local Storage Error in Windows Azure
I'm having a problem when I start the Azure Storage Emulator:
I have tried to do the tips in the url informed into the window, but nothing is working. Anyone can help?
0
votes
0answers
49 views
Windows Azure Error
I´m getting this error in Windows Azure..
The key was wrong! Thx a lot! but now i'm getting this error: The table specified does not exist.
The initial code was not made by me...I need to clear up ...
0
votes
0answers
48 views
Any idea how to move my Image folder from my local machine to Azure Storage Container Blob?
Any idea how to move my Image folder from my local machine to Azure Storage Container Blob? I have tried some tools like
Azure Storage Explorer 5 Preview 1
CloudBerry Explorer for Windows Azure
...
0
votes
1answer
233 views
windows azure mongodb tutorial not working
i followed the following tutorial:
https://www.windowsazure.com/en-us/develop/nodejs/tutorials/website-with-mongodb-(mac)/
and executed app.js just as the tutorial said but i got:
No data received
...
1
vote
1answer
217 views
How to set infinite shared access signature policy in azure?
I am trying to set a shared access policy so that the user has infinite SharedAccessExpiryTime. I will track their access policies so that they can be revoked if needed.
From this thread, the answer ...
0
votes
2answers
426 views
Azure storage emulator suddenly stopped working
I have been using the storage emulator for Azure for months now. However i attempted to start it today and it keeps crashing. It told me to run an exe called DSInit.exe. This is supposed to initialise ...
1
vote
0answers
258 views
Exception:“The value for one of the HTTP headers is not in the correct format”
Hello guys I have a problem .... I have already created a queue but I need to create another queue so I write this code:
CloudStorageAccount storageAccount =
CloudStorageAccount.parse ...
0
votes
1answer
74 views
Windows Azure TableServiceContext UndoChanges
When trying to save an object using an illegal character (e.g. '/') in the RowKey an exception is thrown when calling
_tableServiceContext.AddObject(tableName, myEntity);
I get an ...
-7
votes
1answer
155 views
implement REST interface on windows Azure platform [closed]
Can any one help me.
Recently i have got a difficulty on implementing a simple REST interface on windows Azure cloud platform, I need to use .net and c# as programming language.
The Rest interface ...
2
votes
2answers
212 views
Should I create a new storage account specifically to store Azure Diagnostics data?
I currently have a single "storage account" on Windows Azure for application data. Note that this storage account is tied to the CDN. I want to start collecting diagnostic data and persisting it to a ...
1
vote
2answers
564 views
Setup Windows Azure Development Storage using a remote database
I want to setup a Windows Azure development storage on my dev machine but I don't want to install SQL server on it because I want to use an existing one on another machine. Is it possible to set up ...
5
votes
7answers
6k views
How do I upload some file into Azure blob storage without writing my own program?
I created an Azure Storage account. I have a 400 megabytes .zip file that I want to put into blob storage for later use.
How can I do that without writing code? Is there some interface for that?
0
votes
1answer
148 views
How fast are Azure Storage changes propagated to instances?
Suppose I have several role instances and one instance writes to Azure Storage (blob, tables or queue - whatever). How fast will other instances be able to see and read those changes?
3
votes
2answers
2k views
Append text to Blob in Azure
After looking at this tutorial on blobs: channel 9, I was thinking of using a blob container to save a bunch of tweets (storing the json of each tweet that is). Ideally I would like to create a blob ...
0
votes
1answer
132 views
How to retrieve thumbnail url from Azure table?
How to retrieve thumbnail url from Azure table using LINQ query?
1
vote
1answer
344 views
Exception when deleting message from Azure queue?
I'm dipping my toes into Windows Azure, and I'm running into something that has to be simple, but I just can't see it.
I have this small test to play with Azure queues:
public void ...
21
votes
6answers
5k views
Blob container creation exception
I get an exception every time I try to create a container for the blob
using the following code
CloudStorageAccount storageAccInfo;
CloudBlobClient blobStorageType;
CloudBlobContainer ContBlob;
...