views:

33

answers:

0

This is my scenario: Development Environment: Visual Studio 2008, Windows 7 Deployment Environment:; Ubuntu 10.04, Apache 2.2.14-5, Mono-runtime 2.4.4.(mono-server2 for ASP.Net 2.0 applications) I have all the dependencies installed.

I'm simply trying to create an ASP.Net MVC 1 web application in Visual Studio and deploy it to Apache with mono running. I'm trying to start with the basics, i.e. deploy default ASP.Net MVC 1 (3.5 framework) project that is created when you start a new project in VS 2008. So far I have been able to create this project, copy dll's to project bin folder (i.e. System.Web.Mvc, .Abstractions, .Routing, .Extensions), reference them from there, publish project to IIS 7 and view it. When trying to deploy it to Apache on Ubuntu, I keep getting a hiccup with regards to an error like this: "The class System.Web.Management.WebRequestErrorEvent could not be loaded....." Now I am led to believe that people have been able to successfully deploy an ASP.Net MVC 1 (3.5 framework) application published from VS 2008, straight into Apache 2.2.14. If you have been able to do this, may you please list down the steps needed to accomplish this, from beginning to end, let's pretend we're all beginners here.

Thanks in advance