Mono's ASP.NET hosting server. This module includes an Apache Module, a FastCGI module that can be hooked to other web servers as well as a standalone server used for testing (similar to Microsoft's Cassini)
Перейти к файлу
Marek Habersack 9e599b0ed3 2007-04-13 Marek Habersack <mhabersack@novell.com>
* src/Mono.WebServer/BaseRequestBroker.cs: replace old code that
	used hashtables to store request data with arrays. Array is also
	used to acquire a unique request id. Previously the code used
	GetHashCode() to do that, incorrectly assuming that the return
	value from the method is unique. This caused frequent race
	conditions and crashes. The new code uses arrays sized at 200
	slots initially - this means it can handle up to 200 _concurrent_
	requests before it needs to resize the arrays.

	* src/Mono.WebServer/XSPApplicationHost.cs: make sure worker is
	not null before attempting to use it.

	* src/ModMonoApplicationHost.cs: make sure worker is not null
	before attempting to use it.


svn path=/trunk/xsp/; revision=75696
2007-04-13 21:53:14 +00:00
man Update 2007-01-27 19:45:44 +00:00
scripts 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2006-08-16 20:14:39 +00:00
src 2007-04-13 Marek Habersack <mhabersack@novell.com> 2007-04-13 21:53:14 +00:00
test Metadata is not exposed by Page.Header, remove 2006-04-08 19:06:29 +00:00
test2 update 2003-11-27 01:14:52 +00:00
tools 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2006-06-01 17:41:44 +00:00
unittests In Tests.XSP.Security: 2007-01-08 16:40:57 +00:00
.cvsignore 2004-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2004-06-02 05:03:28 +00:00
AUTHORS 2004-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2004-04-06 02:07:09 +00:00
COPYING 2004-11-24 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2004-11-24 19:06:20 +00:00
ChangeLog 2007-04-13 Marek Habersack <mhabersack@novell.com> 2007-04-13 21:53:14 +00:00
INSTALL update stuff about xsp2, and remove the docs about --profile=net_2_0 2006-03-24 16:42:43 +00:00
Makefile.am renamed "server" to "src" 2005-05-30 21:57:06 +00:00
NEWS 2005-05-16 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2005-05-16 22:39:22 +00:00
README 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2004-05-28 05:07:25 +00:00
autogen.sh 2004-11-12 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2004-11-12 21:55:08 +00:00
configure.in 2007-03-30 Marek Habersack <mhabersack@novell.com> 2007-03-30 10:34:40 +00:00

README

* Welcome to XSP!
-----------------

	The XSP server is a small web server that hosts the Mono
    System.Web classes for running what is commonly known as ASP.NET.

    See INSTALL for details on how to install XSP.

* Directory Layout
------------------

	doc/
		Some documentation about the XSP server. 

	test/
		Little sample ASP.NET pages

	server/
		A stand alone web server that works with mono and MS runtime.
		We are using it to debug/complete our classes.
		MonoApplicationHost and MonoWorkerRequest can be used to embed
		an ASP.NET serve in your application.
		
	tools/
		asp_state, dbsessmgr and nunit-asp

Maintainer: gonzalo@ximian.com