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

0
votes
0answers
50 views

JS and CSS dont work from Windows Azure CDN, while they load just fine in RoR app

I have a rails app that uses jammit to compress and package assets and I'm hosting the app on heroku. I recently moved all the js and css files to windows azure CDN. All the js and css files are ...
0
votes
0answers
22 views

DrupalAzureStorageStreamWrapper::_getStorageClient() should compatible with Microsoft_WindowsAzure Blob_Stream on Apache server

I am getting this error once enable the window azure blob in drupal 7 on apache server.Its runing good on IIS server well. Strict warning: Declaration of ...
0
votes
1answer
132 views

windows azure upload file path error: 'Could not find file… '

I've been trying to upload a file to the Azure storage container. When I run my web app locally, if file is not in the web site root I get an error: Could not find file 'C:\Program Files (x86)\IIS ...
0
votes
1answer
64 views

How to access continuation token for ListBlobSegmented

I am using ListBlobs Segemented but having problems with getting continuationTOken for next page. Here is my code CloudBlobContainer container = GetContainerReference(fileType); ...
0
votes
1answer
109 views

Disaster Recovery for azure virtual machines using geo-replicated storage

We are using Azure Virtual machines to host our application in the cloud. Couple of virtual machines are hosting web front-end(state-less) and one virtual machine is hosting SQL Server (data is ...
0
votes
1answer
103 views

How to update azure blob url programatically

I am in a situation where i have 1000's of blobs in azure storage which are pictures with url having space in it which is a problem. so as a measure we want to update blob uri and remove spaces in ...
0
votes
1answer
120 views

Using WinRT BackgroundUploader with Windows Azure Blob Storage

In a Windows 8 app using JavaScript, I am trying to upload a file to Windows Azure Blob Storage using a Shared Access Signature defined in this technique but I want to use the WinRT BackgroundUploader ...
0
votes
2answers
67 views

How to force specific HTTP headers of cacheable resources served by Windows Azure Storage?

In the document "Optimize Cache - Make the Web Faster - Google Developers", Google states that It is important to specify ONE of Expires or Cache-Control max-age, AND ONE of Last-Modified or ...
4
votes
2answers
336 views

CREATE TABLE with Dynamic Column

I need to insert some data into a temp table. I have some conditional based columns like Salary, Code. How can I create a table for conditional based columns? I don't want to use SELECT INTO ...
1
vote
1answer
146 views

How are VHDs in Azure Storage charged? [closed]

If I create and attach a 200GB VHD to my Azure Virtual Machine and only consume 15GB of this drive, am I charged for the full 200GB or the 15GB?
1
vote
1answer
177 views

Cannot upload VHD to azure failing

I am trying to upload a VHD file to azure. I am using the command line to set the connection and start the upload. WHen it is doing the upload it calculates the HASH and then it starts uploading the ...
0
votes
1answer
39 views

Specify timeout for New-AzureStorageAccount cmdlet

Is there a way I could specify a timeout value while using the [New-AzureStorageAccount] cmdlet? While creating a storage account via powershell, I get this error sporadically... ...
2
votes
2answers
86 views

Azure Queue Storage - Mark messages as visible immediately after calling CloudQueue.GetMessages()

Problem: I am reading messages from a Azure Storage Queue and then inserting them into a Storage Table using a Worker Role. I want to read in messages but only process them if there are at least ...
0
votes
2answers
400 views

CloudConfigurationManager.GetSetting returning null

Following instructions here I have: var connectionString = CloudConfigurationManager.GetSetting("StorageConnectionString"); But connectionString is null, here is my app.config: <?xml ...
0
votes
1answer
22 views

What is the purpose of “DoesServiceRequest” decoration attribute in C# Azure libraries?

MSDN says : DoesServiceRequest specifies that the method will make one or more requests to the storage service. However it doesn't say why it's needed. I can decorate my own mock class with it but ...
2
votes
1answer
58 views

Azure Storage container command running extremely long

I am working with Azure Storage and having some issues when calling commands on a container. I am running it with a unit test and sometimes when a command is called on a container, it just sits and ...
0
votes
1answer
33 views

Azure Storage Analytics Local Development

I was wondering if there is a way to enable storage analytics for development storage? So I can see some statistics about the test I ran? Thanks in advance
0
votes
2answers
296 views

How to publish asp.net mvc 4 project with existing sql database to windows azure?

I have a mvc 4 project that uses sql database which is already populated with data. I found this tutorial on how to create new sql database in windows azure but can I use my database that already ...
1
vote
2answers
198 views

Hosting Umbraco in a Windows Azure Cloud Service

I have just upgraded my client's Umbraco installation to v6.0.2 and we want to now migrate it to a 2x node Windows Azure Cloud Service. I have just finished implementing a new File System Provider by ...
0
votes
1answer
55 views

Generic table storage entity retrieval

I am playing with azure table storage entity retrieval and got a good ms example http://www.windowsazure.com/en-us/develop/net/how-to-guides/table-services-v17/#retrieve-range-entities in case ur ...
0
votes
2answers
55 views

Set timeout for query operation using CloudTable Object

I am querying a table storage using a Cloud Table object as follows: private CloudTable _table _table.ExecuteQuery(query); It takes too much time before it throws an exception. How can i ...
0
votes
1answer
112 views

Creating a container in blob storage Azure - PHP

I am following this tutorial, about manipulating blobs: http://www.windowsazure.com/en-us/develop/php/how-to-guides/blob-service/ It isn't clear on the following things: 1) How to set up a ...
1
vote
1answer
108 views

Python Azure blob storage upload file bigger then 64 MB

From the sample code, I can upload 64MB, without any problem: myblob = open(r'task1.txt', 'r').read() blob_service.put_blob('mycontainer', 'myblob', myblob, x_ms_blob_type='BlockBlob') What ...
0
votes
3answers
93 views

How to create a backup in Windows Azure

I was trying to create a WindowsAzure backup but I have no success because only create tables structure without data. This is the procedure which I was following: 1.Select the database you want to ...
3
votes
3answers
172 views

cloudStorageAccount

before migrating to 2.0, the code below worked (type CloudStorageAccount was in namespace StorageClient): CloudStorageAccount cloudStorageAccount = ...
1
vote
1answer
51 views

Register COM/dll on Azure

i have one online portal which is having online payment facility , somehow my azure lost all settings and my payment gateway not working. i have used one dll for payment gateway so i think i need to ...
2
votes
2answers
60 views

Azure Instance change deleted files

I am new to windows Azure, I am using 6month subscription plan with 1 VM yesterday instance of my VM changed & my files from root folder are deleted, how can I restore that files and how can I ...
0
votes
1answer
95 views

How to enable and download IIS logs on Windows Azure?

Is there a way to easily enable and download Windows Azure IIS logs for a ASP web site? I found a few articles (about transferring logs to storage) but those all seem too complicated for something ...
1
vote
2answers
67 views

Azure Table Storage inserting date properties incorrectly

Why do I have to create my entities' DateTime properties with DateTimeKind.Local? For example, I need to set the following property like so before inserting it into my table: ...
0
votes
1answer
144 views

Azure Table Storage batch inserts across multiple partitions?

The following method can be used to batch insert a collection of entities as a single transaction: CloudTable.ExecuteBatch(TableBatchOperation batch) If any of the entities fail during insert, then ...
0
votes
1answer
35 views

How does transactionScope effect Azure Queue?

If an Azure Queue transaction (push/pop) is made inside of a transactionScope, do they need to be committed or are they done regardless of transaction completeness?
0
votes
1answer
140 views

Azure File Access / Accessing custom configuration files in windows azure cloud service

I have found a number of articles on stackoverflow which I have tried to use to answer a question I have about file access in a windows azure cloud service. My application has a number of xml files ...
0
votes
1answer
109 views

Is it possible to change the drive letter of the Azure Temporary Storage Drive?

I have a new VM instance in Azure, and by default it comes with C: and D:. I understand that D: is volatile and can be lost at some points. My application uses drive D: as a working drive though, and ...
1
vote
1answer
216 views

Azure Table Storage - RowKey design for ordered data

I store large quantities of GPS data in storage tables. Each partition can reach up to 1 million entities. Each GPS entity that is inserted into the table is actually sequential to the previous data ...
0
votes
1answer
53 views

Play remote mp3 using Song.FromUri

I am trying to play audio files hosted on Azure blob. I serve them up over HTTP (not HTTPS) and I use SoundEffect.Play from a stream I open using web client. This works great with WAV files. ...
0
votes
1answer
203 views

Cost per video minute or second on Windows Azure [closed]

I'm going to be building a website on the Azure platform that has extensive use of video uploads using the Windows Azure Media Services. I'm trying to figure out how much a video would cost after ...
0
votes
1answer
138 views

REST API in Windows Azure

I am trying to connect to Windows Azure REST API, but always get issue like this: The MAC signature found in the HTTP request '...' is not the same as any computed signature. I can't get correct ...
0
votes
1answer
135 views

Is Azure Cloud Service Local Storage access faster than Blob Storage

I'm architecting a application for azure cloud services. This application is going to load some configuration files and other support files possibly multiple times... like DLL's, XAMLX files and ...
1
vote
3answers
159 views

Azure Storage Table design with multiple query points

I have the following Azure Storage Table. PositionData table: PartitionKey: ClientID + VehicleID RowKey: GUID Properties: ClientID, VehicleID, DriverID, Date, GPSPosition Each vehicle will log ...
1
vote
2answers
62 views

Recover from accidentally deleting the azure tables

http://news.ycombinator.com/item?id=5292591 This kind of f*** up can easily be done in Azure tables - whenever I use Cerebrata, I have an unnerving feeling that I might screw up things with one ...
0
votes
1answer
191 views

Azure Blob Shared Access Signature without the api

I'm trying to create a REST call to Azure to List Blobs within a container. The container is private so I need to access it through a Shared Access Signature (SAS). I make that call in a Silverlight ...
0
votes
1answer
183 views

Azure Storage Blob Rest Api Headers

I can't upload image to my azure storage by REST API. This is my code: using (var client = new HttpClient()) { using (var fileStream = await ...
0
votes
1answer
123 views

Change to AsTableServiceQuery() in Client Storage Library 2.0

When using the TableServiceContext to query Azure Table Storage I would perform a query like this: var entities = context.CreateQuery<TEntity>(TableName) ...
0
votes
1answer
56 views

Azure Table entity name change

I just modified the name of the property of the table on Azure. And it reflected as totally new property, which makes sense. My question is, is there a way to change property name on Azure Table ...
3
votes
1answer
202 views

Storage Client Library 2.0 - Why is the API not as intuitive to use as 1.7?

I am migrating to using the new Storage Client Library for my Azure Table Storage. Querying with the previous Storage Client Library 1.7 namespace: var orders = serviceContext ...
0
votes
1answer
61 views

Azure cloud diagnostic to table storage: how to specify table name?

I create could storage account to be destination of Azure cloud diagnostic. By default, there is WADLogstable which is created for me. i like to do following. Change table name per a role. Example, ...
1
vote
3answers
160 views

Azure Table Storage Parallel Query

If I don't specify a partition key and thus perform a scan of all partitions, do the scans automatically take place in parallel with each partition scanned concurrently? Thanks.
0
votes
0answers
83 views

What is the best/simplest way to connect my Silverlight 5 web-app to a Windows Azure database?

I have a fairly simple project in progress where I create a very basic upload/download capable Silverlight 5 app to upload a user-selected file from their local machine to an Azure database. After ...
0
votes
1answer
63 views

Sync folders on all Azure Cloud Instances

Just deployed my App to Azure. Everything works fine. I'm currently running some legacy code on my app that I cannot upgrade right now, and it makes use of some files on the local VM Storage. I ...
0
votes
1answer
94 views

azure remote desktop cannot see worker role

Recently i began to working with windows azure. My problem is that i published worker role to my account on windows azure (free trial account). I do it in visual studio. and Worker role is running- i ...

1 2 3 4 5 20