I am implementing a chunked upload solution for my service, which stores blobs in Azure. This is written in Clojure, using azure-sdk-for-java. I am able to upload and commit chunks as blocks in a block blob. Before I upload any block, however, some validation must be performed. This includes things such as checking how much the user has uploaded so far against the content-range they supply (we do not allow blocks to be re-uploaded).
To accomplish these checks, I am using CloudBlockBlob's method, downloadBlockList to get data about committed and uncommitted blocks as needed (and also to get the block list when it is time to commit). On some occasions, though, this fails, and I receive the following exception: "com.microsoft.windowsazure.services.core.storage.StorageException: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature."
This is strange because I never get this failure if I call downloadBlockList after uploading a block, but I get it (on some occasions, but always the same occasions) if I call the method and don't upload. If I catch the exception and immediately call downloadBlockList again, it works fine.
I have used tcpdump to take a look at the headers that are being sent, as on some forums people have mentioned x-ms-date being set wrong, but this is not the case, and nothing looks incorrect. The response is 403, and complains about the MAC signature in the request being wrong.
Does anyone have any ideas why this would happen sometimes, but if I call the method again, immediately after, in an identical way, it works?