Wednesday, March 6, 2013
Specified blob does not exist
When calling the DownloadByteArray method of the CloubBlob object, I got the error "Specified Blob does not exist". This was my first attempt at serious Cloud programming. I was baffled. Spent the next half an hour looking for clues, replacing \ with / and finally came on to a post on MSDN that stated "Blob names are case sensitive". This was it. I was not using the right case for the blob names and even though the blob existed the method complained that it did not exist.
The context is not currently tracking the entity
My code had a call to the Save method on CloudStorageAccount object after updating a TableServiceEntity object. This resulted in the error: "The context is not currently tracking this entity".
Turns out that this exception was a result of setting the MergeOption on the CloudStorageAccount object to "MergeOption.NoTracking". Changing the code to not use this option resolved the issue.
Turns out that this exception was a result of setting the MergeOption on the CloudStorageAccount object to "MergeOption.NoTracking". Changing the code to not use this option resolved the issue.
Subscribe to:
Posts (Atom)
What is success?
The journey of life takes us through varied experiences like landing an admission at a prestigious college, earning a degree, getting hired,...
-
Recently after a domain password change, I got the following error in trying to run the webrole. Can not log on locally to WebRole as us...
-
I was trying my hands at creating a .NET 2.0 component that can be consumed by a COM application. One of the errors I got in the process of...
-
After editing the post-build event of my project in VS 2005, the following error came up "'Exec' task needs a command to execut...