I have a partly developed asp.net application, but now the client wants it to be developed in azure. How much of the existing code can be used in developing the application in azure.
What challenges could we possibly encounter when we try to port an existing asp.net application to azure? Are there any other alternatives to azure in cloud computing?
For an asp.net application, you can certainly port that to Azure. Your core logic will port in a relatively straightforward manner, and you’ll gain the many benefits Azure has to offer. With the June 2010 release, you’ll also have .NET 4 support, along with IntelliTrace for debugging.
However, as you begin to plan your Azure migration, there are several considerations you’ll need to think about (none of them insurmountable, and several relatively simple to deal with):
as there’s currently no out-of-the-box caching implementation that runs across instances of your web rolewhich is now provided as a service. Read details here, as well as an FAQ here.So: yes, there are some things you need to concern yourself with, but Azure is a great platform for hosting an asp.net application and you should strongly consider it.