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)
Перейти к файлу
Miguel de Icaza bfee4f8c41 update
svn path=/trunk/xsp/; revision=16069
2003-07-09 21:23:37 +00:00
doc small fixes 2003-05-01 15:16:46 +00:00
server * Makefile: install target: copy web service files. 2003-07-09 19:25:43 +00:00
src 2002-12-13 Juli Mallett <jmallett@FreeBSD.org> 2002-12-13 15:19:26 +00:00
test update 2003-07-09 21:23:37 +00:00
INSTALL 2003-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-05-04 15:39:32 +00:00
Makefile 2003-01-15 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-01-15 00:19:54 +00:00
README 2003-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com> 2003-05-04 15:39:32 +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 server.exe.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