Is ultidev cassini good for hosting ASP.NET 2.0 (Ajax 1.0) based web application (intranet)

The server must be installed on Windows XP and must host the ASP.NET 2.0 + ASP.NET AJAX 1.0 web application.

What is the concurrent connection limit? (unlike 40 in IIS on XP)

Are there any other restrictions / short sentences that I need to know about?

+4
source share
2 answers

There are several problems with Cassini, most common problems are limiting maximum concurrent connections and lack of SSL support. There are also security issues related to the way Cassini operates in a privileged account, so if the application submitted by Cassini is compromised, the attacker gains control of the entire system.

If you need to host an intranet application, these problems probably don't matter much. However, another feature missing from Cassini is the entry, which in my opinion is important even for intranet applications. This devx article discusses how to implement your own journal by distributing Cassini source code yourself, but there are other problems if it isnโ€™t done "right."

Comet Way, the company I'm working on, is creating a product called Neokernel Web Server , which is a secure, professional, ASP.NET that is designed to be implemented in .NET applications. Like Cassini, Neokernel runs any ASP.NET web application that runs in IIS and fixes the above issues. It has functions to solve other problems with embedding the web server in your application, for example, starting / stopping the server programmatically and APIs for expanding the server using its own request processing code. It is not based on Cassini source code. Maximum parallel connections (and many other parameters) can be specified through XML configuration files. Neokernel Web Server is a commercial product, but a free evaluation license is available.

+2
source

UltiDev Cassini is certainly a viable option for intranet business. UltiDev Cassini uses the standard Windows TCP / IP stack and is therefore limited by the number of inbound connections allowed by the OS. UltiDev Cassini itself does not impose any restrictions on the connection.

The upcoming new version of UltiDev Web Server Pro will remain free and redistributable, but will have a complete makeover. It will be based on the http.sys kernel listener used by IIS, it will support SSL, virtual folders, integrated Windows authentication / authentication, GZIP response compression, multiple recyclable host processes, support for 32-bit applications on x64 systems, application configuration based on COM API in addition to .NET and other functions.

+2
source

All Articles