user1476445
user1476445

Reputation: 107

Windows Phone 7.1 app accessing Azure Storage directly

I am creating a wp7.1 silverlight application and want to access azure blob and table storage directly. Searching all over the internet I can see using web application but I dont want to use web application for my silverlight application.

Is there a direct way to access azure storage directly from wp7.1 application?

Upvotes: 0

Views: 209

Answers (1)

AvkashChauhan
AvkashChauhan

Reputation: 20556

You can use WP7AzureQuickstarts Library to start your project. This library has following 4 C# based project with full source code:

  1. WP7AzureDirectory
  2. WP7AzureLocator
  3. WP7AzureNextGroupEvent
  4. WP7FacebookAzure

If you download WP7FacebookAzure source code and look for WindowsPhoneCloud.StorageClient library which has full source code to access Azure Blob, Table and Queue storage directly from WP7 client application. You may need to understand security, SAS etc going forward.

Also you can download Windows Azure Toolkit for WP7 source and modify the source code the way you would want to use.

Upvotes: 1

Related Questions