I am able to upload photos to blob with SAS from an Azure MVC web role with the code below:
using (var WS = new HLServiceClient())
{
/* Getting a SAS Write URI */
var sasUri = WS.GetSasUriForBlobWrite(HLServiceReference.BusinessLogicMediaUsage.News, fileName);
var writeBlob = new CloudBlob(sasUri);
writeBlob.UploadFromStream(fileData.InputStream);
}
I would like to do the same thing from a WP app. But I can't figure out how to do it. I DON'T HAVE A LOT OF PROGRAMMING SKILL.
Can you tell me how to upload a photo to blob from a WP app with SAS?
There is a Windows Azure Storage Client Library for Windows Phone available on NuGet: Phone.Storage, it says "Class library for Windows Phone to communicate with Windows Azure storage services directly", I was hoping to find a simple solution using that: http://www.nuget.org/packages/Phone.Storage
I found a video tutorial on the Phone.Storage NuGet: http://channel9.msdn.com/posts/Using-the-Windows-Phone-Storage-NuGets-for-Windows-Azure
There is also a sample application demonstrating the usage of the Phone.Storage NuGet. http://www.nuget.org/packages/Phone.Storage.Sample
Still, though, it evades me if I can implement this in my application scenario?