Has anyone had any experience running an ASP.NET MVC (2) app in one of the (decent) cloud hosting services? Which providers support this?

Additionally - how does session state work in these services - all ok?

Thanks

link|improve this question

58% accept rate
feedback

2 Answers

up vote 1 down vote accepted

We run it on Amazon EC2 without problems (Windows Server 2008)

link|improve this answer
Interesting, thanks. – UpTheCreek Jul 28 '10 at 7:33
Does session state work ok when running multiple instances? – UpTheCreek Jul 28 '10 at 7:37
1  
All they give you are plain virtual machines, you have to set the whole IIS configuration up yourself. Multiple instances can talk to each other and you could put session state into a session state service, SQL, memcached or whatever. It's your choice. – chris166 Jul 28 '10 at 9:33
Right, thanks.. – UpTheCreek Jul 28 '10 at 10:53
feedback

I run MVC 2 on RackSpace cloud (formerly know as Mosso). I just had to set copy=true for a few of the MVC DLLS as they are not yet installed on the servers.

Apart from that it all works great.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.