1
vote
2answers
69 views

Azure REST WebClient PUT Blob

I'm trying to simply upload a new blob to an Azure Storage countainer using WebClient like this : var sas = "[a new generated sas with Read, Write, List & Delete permissions]"; var sData = "This ...
0
votes
1answer
152 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
216 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 ...
1
vote
1answer
91 views

How to Upload a blob to windows azure by splitting it into chunks and calling PutBlockList using REST and PHP

Please can someone post some code or give a reference on how we can upload a blob to azure storage by splitting it into chunks and calling PutBlockList using REST and PHP. I have a reference to the ...
0
votes
0answers
43 views

How to use REST CGI Library to download file from azure storage

I am looking for some sample code to download blob from windows azure by using c++/REST CGI library. Thank
1
vote
2answers
83 views

Azure Storage from Silverlight (REST?)

I'm trying to query an azure Blob Storage container from Silverlight. I saw that the Windows.Azure.Storage.dll is not working with Silverlight so I presume the best way to communicate with my ...
0
votes
1answer
146 views

Azure Blob storage REST Api - How to write headers as string

I am new to REST and I am trying to test a REST call to my Private azure blob storage. I downloaded a small REST call testing program that asks for a URL and Headers (both as string). I need to list ...
0
votes
1answer
90 views

Azure get SQL DB servers REST request returned “HTTP error 500 : Internal Server Error”

I tried using "enumerating servers" Get Servers option in REST API. I am getting a response "HTTP error 500 : Internal Server Error" . ...
1
vote
3answers
955 views

Delivering and using an Azure REST-API SharedKey for Blob Upload

We currently use the REST API (based on microsoft samples) to upload blobs blockwise from a .NET client profile machine. The REST API examples use the Azure storage account name and access key ...
0
votes
1answer
230 views

Delete multiple entities at once using Azure Table Storage Node.js interface

The only delete operation I get deletes one at a time: https://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/table-services/#delete-entity What I want is equivalent to the SQL statement ...
0
votes
0answers
27 views

Suggest architecture for download/upload files to Azure blob storage using a REST wcf service [duplicate]

Possible Duplicate: Returning Azure Blob Stream directly from WCF service I have been struggling for days to get a grasp of this, I am no expert web developer. Our company is building a ...
2
votes
0answers
302 views

How to generate multiple temporary access URLs for the same Azure blob?

We are developing different client apps that use files in the Cloud. Files must be stored safely in the Cloud with a secure authorize access. Also it must be possible for several client apps to read ...
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 ...
1
vote
3answers
396 views

How to optimize large file transactions using a WCF Service as an endpoint for the Azure storage?

I have an WCF REST Service as an endpoint for the Azure Storage. The WCF REST Services handles uploads and downloads of files that usually measure 5-10 MB. When handling the stream (both for download ...
0
votes
2answers
465 views

Access Azure blob storage using C++ [closed]

Was looking around and found a few answers that suggests that I should use REST. But how would I integrate this in Qt/c++? Could anyone link some examples of this or maybe a few lines of code? Would ...
0
votes
2answers
596 views

Chunk upload to Windows Azure Blob by using WCF REST

I'm using Windows Azure Blob Storage and WCF REST Services together to upload large files with chunk. I can upload one part files easily, but I have to find a method to merge this chunks in an Azure ...
1
vote
1answer
471 views

Downloading file from WCF REST with Azure Blob Storage

I have a WCF REST service with Azure Blob Storage. I don't want to use my service as a proxy with a stream, so I wanted to redirect client's request to the absolute blob url but it redirects to the ...
2
votes
3answers
900 views

Problem accesing Azure Table entities

So I have this app which need to query entities from the Azure Tables storage from tables I don't know the schema of. 1) Is there a way I can do that with the Storageclient wraper? 2) I'm guessing ...
1
vote
2answers
3k views

Accessing local Azure blob storage via a simple REST 'GET'

I am working with Windows Azure and am just using the Blob Storage. I have setup my Blob Storage to run in its own Solution file with a dummy web role. I run it first on my development machine so ...