nakago
nakago

Reputation: 113

Accessing azure storage services

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

Answers (4)

AvkashChauhan
AvkashChauhan

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:

  1. Azure Storage Explorer
  2. CloudXplorer
  3. CloudBerry Azure Storage Explorer

If you want to get your hands dirty and use Azure Storage Client API, here is a full example code.

Upvotes: 0

user94559
user94559

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

Sandrino Di Mattia
Sandrino Di Mattia

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):

  • You don't have to handle the low level REST API
  • The SDK is built by the Windows Azure team, they have the most knowledge of how to best use the REST API
  • For the number of requests, most of the time you are in control in both scenarios (batching for table storage, getting multiple messages from queue, ...).

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

user728584
user728584

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

Related Questions