about 2 weeks ago - 2 comments
Note I say web site – rather than web application. If you have a web site, which is just a folder of files and stuff rather than a full blown VS project, you can easily deploy into Windows Azure without having to convert to a web app. (Of course you should really think about converting
about 2 weeks ago - Comments Off
A few folks today have been asking about how to get started with Windows Azure and/or SQL Azure. So here is my quick 3 steps to get you going. Make sure you have an OS that supports development! You can use Vista, Windows 7, Server 2008 or Server 2008 R2. My recommendation is Windows 7
about 1 month ago - 2 comments
Now you can use .net 4.0 in Windows Azure, it opens up some possibilities to get even more out of your workers. If you have workers that read messages from queues, then do some processing against storage, you may want to consider converting your message processing loops into parallel loops. Here is the shell of
about 1 month ago - 1 comment
I’m pleased to announce the June update for the Windows Azure Platform training kit. You can download it from here. The training kit has everything you need to get started and then dig deep on the Windows Azure platform, including Windows Azure, SQL Azure, “Dallas”, Identity and the Windows Azure Platform AppFabric. We have some
about 1 month ago - Comments Off
Update (June 4th): There are a few errors in the guide which are being fixed by the authors. I’ll update this post again once they are fixed. This is worth a read <link removed> This paper focuses on the security challenges and recommended approaches to design and develop more secure applications for Microsoft’s Windows Azure
about 2 months ago - Comments Off
In the ServiceConfiguration.cscfg file, you have a DiagnosticsConnectionString which as a default is linked to local storage. <Setting name="DiagnosticsConnectionString" value="UseDevelopmentStorage=true" /> When you deploy your package it will never start correctly (stuck in Busy/Initializing), because you could will be trying to log to the local storage, which doesn’t exist in the cloud. Fixing this
about 2 months ago - Comments Off
When using Windows Azure table storage – keep in mind the property names are case sensitive! Yesterday one of our developers was working on refactoring some code. As is standard practice, they changed the class properties on the table storage entity classes from a lower case address to an upper case Address. This worked fine
about 3 months ago - Comments Off
I was chatting to a customer earlier about a solution they had built for Azure. They had implemented a thingythangy that stored a few hundred requests in memory, before dumping it into a blob. My immediate reaction was – “What happens when your role gets recycled, do you loose the cached requests?” Windows Azure does
about 3 months ago - Comments Off
<Rant Warning/> In previous blog posts, I’ve talked about some of the patterns you can use to build your apps for the cloud, including Task-Queue-Task and de-normalizing your data using that pattern. But now something on scaling out. When you are building apps in the cloud, you have to remember you are running in a
about 3 months ago - Comments Off
I’ve just recently installed the final version of Microsoft Visual Web Developer 2010 Express – which is my tool of choice for building for Windows Azure. When you open a project from an older version, you get the option to upgrade the projects. My default response to this dialog box is to click on Finish
about 7 months ago
Good post! Couple of things to note
- If you’re exporting the key to use it on another machine, you *must* export the private key. You need the private key installed on your machine to make API calls work
- If you’re a command line junkie, you can just do “makecert -r -pe -a sha1 -n “CN=Windows Azure Authentication Certificate” -ss My -len 2048 -sp “Microsoft Enhanced RSA and AES Cryptographic Provider” -sy 24 yourapicert.cer”
about 7 months ago
Thanks for pointing that out Sriram. I was too lazy to install the Windows SDK and get the command line tool – i figured most folks would have IIS installed so went that route