0
votes
1answer
17 views

How to get the first frame of a video file stored in azure storage

I had to extract the first frame of a video files(mp4, wmv, mov) which is stored on azure storage as block blobs. I had to do this inside a httphandler then store it as byte buffer to a table on our ...
0
votes
0answers
38 views

Permission not permitted [duplicate]

i keep getting the error for Operation not permitted on IsolatedStorageFileStream what's wrong with my code? did i left out anything? the error surface under uploadBtn line... i have look through ...
0
votes
0answers
27 views

CSUPLOAD- Azure Disk not visible in disks after uploaded on azure storage

I am facing issue in CSUpload – Add-Disk command, I am uploading a .VHD file from On Premise to Azure storage. CSUpload is completed 100%- but further processing is pending. After that processing ...
0
votes
2answers
477 views

Azure Blob always downloads when navigating to url

In our application we give the user the abilty to upload a document to a windows azure blob storage account. After uploading the document or image it gets assigned some url ...
0
votes
1answer
62 views

using a blob on my web application

I was reading API of Windows Azure and I have a question about blobl storage service.For instance, is it possible to use an image from my blob storage account for my website. I saw how to access to a ...
4
votes
5answers
500 views

Mysterious disappearing Azure development storage assets

We're building a site backed by Azure Storage. One worker role has a few files that it downloads from the blob when it's starting up. The files are never modified once they're in storage, we just pull ...
5
votes
1answer
977 views

CloudBlob.DownloadToStream returns null

I'm trying to download a file from cloudBlob via stream. I refer to this article CloudBlob Here is the code to download the blob public Stream DownloadBlobAsStream(CloudStorageAccount account, ...
0
votes
0answers
135 views

Using local blob storage from WPF client application

I need an explanation or a link to a step by step explanation of using local storage blob from WPF local application. I just want to upload a file and be able to download it from a blob container.
3
votes
1answer
123 views

Azure StorageClient connection management

Can someone share the details of the connection management used by the Azure StorageClient library? Specifically, we are interested in: 1) Is keep-alive being used on blob connections 2) What is ...
0
votes
1answer
355 views

Azure Blob - Multiple files into one zip file before downloading

I'm currenlty using Azure Blob to store files, and upload/download from ASP.Net Application hosted outside of Azure. (I do not have Web Role and Worker Role.) Is it possible to zip multiple files ...
1
vote
1answer
468 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 ...
0
votes
1answer
1k views

Azure Storage Blob types (CloudBlobContainer, CloudBlobClient, etc.) and thread safety

I am developing an azure application which needs at some point to upload(download) a large amount of small blobs to a single container (more than 1k blobs, less than 1 Mb each). In order to speed up ...
0
votes
1answer
329 views

Creating blob storage service programmatically in Azure

currently I'm playing around with Azure and thinking about a multi-tanent web app where users can create an instance of the app, where more users can register to upload and share files within this ...
1
vote
2answers
665 views

Azure Blob storage, CDN and cache expiring

We're using Azure CDN, but we've stumbled upon a problem. Before, content could not be updated. But we added the option for our users to crop their picture, which changes the thumbnails. See, the ...
1
vote
1answer
1k views

how to upload pictures to blob using azure and wp7

i want to develop a wp7 application that can store geospatial data and pictures in an azure database. does anyone have an idea on how to do this? Do i use blobs? Cheers
4
votes
2answers
2k views

Improving azure blob storage querying speed

We currently have a blob storage with thousands of files under the same Azure container. Our file naming convention is something like this: StorageName\Team\SubTeam\FileName I'm writing a tool that ...
3
votes
2answers
2k views

Azure Storage Blobs: what kind of blob do I get with GetBlobReference()?

I'm getting a little confused with blobs. I've read some articles that says that there are two kinds of blobs, blocks and pages, but I can see in the SDK's library a third one: ...
30
votes
6answers
9k views

Checking if a blob exists in Azure Storage

I've got a very simple question (I hope!) - I just want to find out if a blob (with a name I've defined) exists in a particular container. I'll be downloading it if it does exist, and if it doesn't ...