Reputation: 107
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
Reputation: 20556
You can use WP7AzureQuickstarts Library to start your project. This library has following 4 C# based project with full source code:
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