Reputation: 113
There are couple of ways to access azure storage services. And I wanted to know from the experts:
Windows Azure Storage Client Library Class Library OR Windows Azure Storage Services REST API
Upvotes: 2
Views: 1266
Reputation: 20576
If you just want to access your Azure Storage, just download FREE 3rd party application and configure your Azure Storage using "Storage Name" and "Storage Key" and you are good to go. Here is a list of a few applications:
If you want to get your hands dirty and use Azure Storage Client API, here is a full example code.
Upvotes: 0
Reputation: 60153
The other answers are helpful, but on a technical note, there's exactly one way to access Windows Azure storage, and that's via its only API (REST). The .NET storage client library is one of many available libraries you can use to call that API.
Upvotes: 1
Reputation: 24895
This depends on your environment. If you're using .NET, Node, Java, PHP or Python I suggest you take a look on the Windows Azure website since there's an SDK for all these environments, which is much easier than using the REST api (underneath the SDK still uses the REST api):
Now, keep in mind that the REST api will always have the new features first, and it can take a while before these are implemented in the SDKs. But still, you can follow the repositories on GitHub to get the newest versions (the 1.7.1 .NET SDK is here while the 'official' release is still 1.7).
Upvotes: 0
Reputation: 2135
If you are familiar with .NET and feel more comfortable in coding in e.g. C# then the Storage Client Library abstracts all the REST API calls from you and makes your life easier :)
Storage Client Library
Pros - easy of use, .NET, good community support
Cons - none that I'm aware of
The REST interface is excellent and can give you a more native way to write interoperable code at the REST/HTTP layer
Pros - interop e.g. devices, platforms, languages
Cons - complexity IMO
HTH
Upvotes: 1