Cloud Computing & Windows Azure – MSDN Briefing in Austria from January 26th
On January 26th I presented at our MSDN-Briefing on Cloud Computing and Windows Azure. During the session I introduced our (and my) point-of-view on Cloud Computing. Within the demos I migrated my good old MicroBlog sample I created for a presentation at the technical university of Vienna last year to run on Windows Azure.
Downloads: presentation here, demo here
Codefest.at posting incl. links to recordings (German, only)
Here are the little challenges I had for the migration outlined (please note, that this is just a simple sample – for bigger apps you definitely will run in some more issues – Rainer Stropek and I will talk about these in our Session at BigDays 2010 in March):
- MicroBlog was a Web Site project – Azure requires Web Application Projects. So I had to convert the project. For doing so, follow these steps:
-
- Create a new Web Application Project in the same solution as you have your Web Site Project.
- Copy all Contents from the Web Site Project to the Web Application Project.
- Right-click the web application project and select “Convert to Web Application Project” from the context menu.
- Fix remaining compile errors or other errors (namespace changes etc.)
-
- The ASP.NET Membership API and Roles API scripts and aspnet_regsql both do not work on SQL Azure because they’re using features not supported by SQL Azure. Fortunately Microsoft released a fixed set of scripts and a tool called aspnet_regsqlazure to solve this problem and make Membership API and Roles API available for SQL Azure:
The remaining parts of the application worked pretty well, of course I extended it during the briefing to use Blob- and Table-Storage. But more on that hopefully in later posts.