Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Windows Azure project with a WCFServiceWebRole. I have a service to save a large binary file.

In this service I wanted to use Block blobs (because of the large binary file). But I always get the next exception when I try to use it:

Storage client exception:
The specified blob or block content is invalid.

Here is my code I'm using:

public bool DummyMethod(byte[] file, byte[] xmlVersion)
{
    CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
   RoleEnvironment.GetConfigurationSettingValue("StorageConnectionString"));

    CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

    CloudBlobContainer container = blobClient.GetContainerReference(Constants.UPDATECONTAINERNAME);

    container.CreateIfNotExist();

    container.SetPermissions(new BlobContainerPermissions { PublicAccess = BlobContainerPublicAccessType.Blob });

    CloudBlockBlob blobBlock = container.GetBlockBlobReference(Constants.UPDATEFILE);
    CloudBlob blobxml = container.GetBlobReference(Constants.UPDATEPACKAGE);

    Stream stream = new MemoryStream(file);
    Stream streamxml = new MemoryStream(xmlVersion);

    int bufferSize = 1024 * 1000 * 4;

    var blockCount = (int)(stream.Length / bufferSize) + 1;
    var bytes = new byte[bufferSize];

    var listBlockID = new List<string>();

    for (int i = 0; i < blockCount; i++)
    {
        stream.Read(bytes, 0, bufferSize);
        var blockID = Convert.ToBase64String(Encoding.UTF8.GetBytes(Guid.NewGuid().ToString()));

        using (var memoryStream = new MemoryStream(bytes))
        {
            var cloudBlockBlob = container.GetBlockBlobReference(Constants.UPDATEFILE);
            cloudBlockBlob.PutBlock(blockID, memoryStream, null); //ERROR ON THIS LINE!!
        }

        listBlockID.Add(blockID);
    }

    var cloudBlockBlob2 = container.GetBlockBlobReference(Constants.UPDATEFILE);
    cloudBlockBlob2.PutBlockList(listBlockID);
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.