Azure Storage: usage and testing with Java

Using Blob, Table and Queue storage in the cloud using Java... but testing it locally.

Azure Storage Azure Storage is the highly scalable, secure, high available managed offering to store data in the cloud. Since not all storage needs are the same, there are a few different flavors: Azure Blobs: Object store for text and binary data; Azure Tables: NoSQL store for structured data; Azure Queues: Message store for messaging between application components. There are a few more flavors, but these I consider the originals ;). [Read More]