Is it possible to deploy asp.net application
Hi All,
Is it possible to deploy asp.net application without IIS?
I saw an application that could do that but I don’t know how?There is
a lanuch.exe file when I double click on the file it create localhost
website with random free port.
http://localhost:/app_name/default.aspx
http://www.obout.com/
click download now and install oboutSuite.exe file. Now you can notice
RunExamples.exe file by clicking web application start executing in
browser with random port no.
Now I want to start App auto after IIS started.
Please help me out to sort out the above problem
Thanks in advance..
———————————
On Tue, Aug 25, 2009 at 8:37 AM, peter wrote:
Sure it is possible, there are a number of different possibilities to
run without iis. First you can run asp.net application using Mono, a
open source implementation of .NET. You will be able to Run on Apache.
Besides that you can run an ASP.NET application in a host application
on windows:
http://www.codeproject.com/KB/aspnet/LightIIS.aspx
http://www.devx.com/tips/Tip/30771 (Cassini Web server)
or just google: http://www.google.co.uk/search?hl=en&q=run+asp.net+without+iis&meta=
When running from VS.NET you can choose to use IIS or in a dedicated
web server.
Peter
———————————-
On Wed, Aug 26, 2009 at 2:34 AM, Steven Melendez
wrote:
Yes, but Mono emulates IIS and when running locally on a windows machine, you are still running in IIS, just a limited version.
I am 99% sure you would need to either emulate the .Net runtime or have it available.

