Gaurav Mantri's Personal Blog.

Uploading Large Files in Windows Azure Blob Storage Using Shared Access Signature, HTML, and JavaScript

In my last post I talked about Shared Access Signature feature of Windows Azure Storage. You can read that post here: https://gauravmantri.com/2013/02/13/revisiting-windows-azure-shared-access-signature/. In this post we’ll put that to some practical use :). One thing I wanted to accomplish … [Read more...]

Revisiting Windows Azure Shared Access Signature

In this blog post, we’ll talk about Shared Access Signature (SAS) functionality in Windows Azure. Steve Marx (@smarx) wrote excellent blog posts on the same subject a few years ago which you can read here: http://blog.smarx.com/posts/shared-access-signatures-are-easy-these-days, … [Read more...]

Workaround for IIS Express Crashing When Running Windows Azure Cloud Service Web Role with Multiple Instances in Windows Azure SDK 1.8 Compute Emulator

I ran into this weird issue when developing a very simple Windows Azure Cloud Service Web Role using Windows Azure SDK 1.8. I started off with a basic ASP.Net MVC 4 Web Role with no changes whatsoever. When I tried to debug it with just one instance running, everything worked great. The moment I … [Read more...]

Windows Azure Access Control Service, Windows 8 and Visual Studio 2012: Setting Up Development Environment – Oh My!

Today I started playing with Windows Azure Access Control Service (ACS) and ran into some issues while making a simple application based on the guide here: http://www.windowsazure.com/en-us/develop/net/how-to-guides/access-control/. I had to search for a number of things on the Internet to finally … [Read more...]

Building a Simple Task Scheduler in Windows Azure

Often times we need to execute certain tasks repeatedly. In this blog post, we will talk about building a simple task scheduler in Windows Azure. We’ll actually develop a simple task scheduler which will run in a Windows Azure Worker Role. We’ll also discuss some other alternatives available to us … [Read more...]

(Some) Best Practices for Building Windows Azure Cloud Applications

In this blog post, I will talk about some of the best practices for building cloud applications. I started working on it as a presentation for a conference however that didn’t work out thus this blog post. Please note that these are some of the best practices I think one can follow while building … [Read more...]

Got My MVP Award And Things I Did (I Think) To Get This Award

What a way to start new year! Just got the following in my email: This is the 3rd year I got this award. I’m excited, honored, humbled and privileged to be awarded as an MVP and especially proud to be the part of Windows Azure MVP group. Thank you Microsoft!!! Things I Did Here’s what I … [Read more...]

Storage Client Library 2.0 – Implementing Retry Policies

Continuing my blog posts about migrating code to make use of storage client library 2.0, in this post I will talk about some changes done in the library for implementing retries in your code. You can read my previous posts on storage client library 2.0 here: … [Read more...]

Storage Client Library 2.0 – Exception Handling

Continuing my blog posts about migrating code to make use of storage client library 2.0, in this post I will talk about some more changes done in the library for handling exceptions. You can read my previous posts on storage client library 2.0 … [Read more...]

Storage Client Library 2.0 – Migrating Blob Storage Code

A few days ago I wrote blog posts about migrating code from storage client library 1.7 to 2.0 to manage Windows Azure Table and Queue Storage. You can read those posts here: https://gauravmantri.com/2012/11/17/storage-client-library-2-0-migrating-table-storage-code/ and … [Read more...]