зеркало из https://github.com/mono/xsp.git
3cb1c00dd7
svn path=/trunk/xsp/; revision=25089 |
||
---|---|---|
doc | ||
nunit-tests | ||
server | ||
test | ||
test2 | ||
tools | ||
.cvsignore | ||
AUTHORS | ||
ChangeLog | ||
INSTALL | ||
Makefile.am | ||
NEWS | ||
README | ||
TESTED | ||
autogen.sh | ||
configure.in |
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 xsp.exe.config file. There are other command line options and appSettings options. Run 'mono xsp.exe --help' to view all of them. You can also set some configuration values in test/web.config file. 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!!! TESTED We'll be updating this file with controls and applications out there in the web that we test and work fine. Maintainer: gonzalo@ximian.com