Reputation: 105
I'm looking for a server which is:
Cassinni is too buggy, IIS is too expensive, Apache is hard to setup, XSP is linux only
Visual Web Developer's is cutting it.
Upvotes: 6
Views: 525
Reputation: 686
The company I work for makes a server called the Neokernel Web Server that meets these reqs; it can be used standalone or embedded in your application and started programatically. The assembly is around 500KB so it's pretty small. This is a commerically supported product with a free evaluation license available. It is not based on the Cassini source code, although like IIS and Cassini it uses the ASP.NET processing pipeline for ASP.NET files.
Upvotes: 1
Reputation: 4312
Note: (from their website)
"UltiDev recommends running UltiDev Cassini Web Server as an Intranet (inside-the-LAN) web server. Exposing UltiDev Cassini to Internet may be unsafe without using of HttpVPN due to the fact that UltiDev Cassini windows service is running under the powerful Local System (NT AUTHORITY\SYSTEM) account. Compromising applications running under Cassini may give an attacker complete control over the system."
Upvotes: 3
Reputation: 66122
IIS. That's the only server that supports .Net really well. You can go with Mod_Mono on Apache, but that's probably not going to be as stable as running IIS.
Upvotes: 8
Reputation: 14513
XSP - "a lightweight and simple webserver written in C#"
Of course, you're going to get better performance from apache + mod_mono, but this is definitely lightweight
Also, XSP runs on windows: http://www.mono-project.com/Mono:Windows
Upvotes: 2
Reputation: 710
Probably not relevant to this discussion but be careful testing / debugging on cassini. Its threading model is different from IIS. I've had problems with security (thread.CurrentPrincipal etc) on cassini that just disappeared when I started debugging against IIS.
Upvotes: 1