tags:

views:

132

answers:

2

I'm playing around with a test project in Visual Studio 2010 and tried to publish it to Azure, but it was rejected as, out-of-the-box, VS2010 defaults to using .Net Framework 4.0 and Azure currently only runs 3.5 SP1 stuff.

Any other restrictions on the level of software you can use in there?

+1  A: 

That's a good question. So far, the only other thing/issue I've found is when using ASP.NET MVC, but it isn't so much an issue as it is something that you must do extra steps to get it to work: http://blogs.msdn.com/jnak/archive/2009/11/19/asp-net-mvc-and-windows-azure-november-2009-edition.aspx

Marco Shaw
A: 

There are very few restrictions in Azure. .Net 4 isn't ready for prime time, but will be of huge importance once it is (native .net caching in Azure being one of the biggest wins).

Aside from that, the only real constraints are security imposed, which won't impact the vast majority of applications. There are limitations on the number of ports you can bind to. But that's about it from what I remember. Ultimately it is just a Windows VM, so you can do what you want, including running native code.

And while not a restriction, there are throttling systems in place to keep the overall health of the Azure system good. Throttling can be at the network level, or service level (i.e. transaction throttling in SQL Azure). Overall Azure is very sound, and does not impose any terrible constraints (that I've come across, anyway).

Aaron