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)
Перейти к файлу
Gonzalo Paniagua Javier b668960b98 little update
svn path=/trunk/xsp/; revision=11651
2003-02-17 21:04:15 +00:00
doc New file documenting the generated code from xsp 2002-05-27 15:50:09 +00:00
server 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-02-17 21:03:24 +00:00
src 2002-12-13 Juli Mallett <jmallett@FreeBSD.org> 2002-12-13 15:19:26 +00:00
test 2003-02-15 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-02-15 04:11:03 +00:00
INSTALL 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-02-04 00:59:46 +00:00
Makefile 2003-01-15 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-01-15 00:19:54 +00:00
README little update 2003-02-17 21:04:15 +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.

* Compiling and Running XSP
---------------------------

	To compile XSP you need a `make' compatible tool, then type
    the following commands:

	make 
	make install

    Then to run it, go to the directory that contains your .aspx
    files, and execute xsp:

	cd my-asp-dir
	mono xsp.exe 

    You can optionally provide a port where the server should run:

	mono xsp.exe --port 80

    The default is port 8080, or you can configure the server using
    the web.config file.

    There are other command line options and appSettings options.
    Run 'mono server.exe --help' to view all of them.

    This is not a full fledged server, it is just a shell for hosting
    ASP.NET.

* Hosting
---------

        The System.Web classes provide what is commonly known as
    ASP.NET, it provides the platform to run web applications and web
    services, and provides a number of hooks that allows the user to
    host it on applications or other web servers. 

        If you are interested in hosting the ASP.NET classes for
    higher performance in an Apache module or your favorite web
    server, you could use the code in this module as a starting point
    for it. See mod_mono in mono CVS.

	The code to look at is: server/MonoApplicationHost.cs and
    server/MonoWorkerRequest.cs.  

* 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.
		
	src/
		Source files for the parser/generator and test server.
		OBSOLETED!!!

		
Maintainer: gonzalo@ximian.com