2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / web / asp-net
index c7128e6f2fa8336257a5d7fb3b51c8ae7c2941e8..562c7e411f933f1432ea6b84ac770e76097ca1c1 100755 (executable)
                * Web Services (the SOAP-based rpc system).
        </ul>
 
-       There is work underway for both systems.  The Web Forms
-       support is more advanced at this point, and various ".aspx"
-       programs can be run using the Mono runtime, including IBuySpy.
-
-       ASP.NET works either embedded into
-       our XSP server test server or the mod_mono Apache module.
-
-       We are now working bug fixing and adding missing features
-       after making the whole pipeline compatible with MS.
+       Both are fully functional at this point.
+       
+       Publicly available applications such as <a
+       href="http://www.asp.net/Default.aspx?tabindex=5&tabid=42">
+       IBuySpy</a>, <a href="http://www.ngallery.org/">nGallery</a> and
+       many others are known to work.
+
+       Web Services stack is being used for commercial applications
+       such as <a
+       href="http://www.ximian.com/about_us/press_center/press_releases/index.html?pr=sourcegear">
+       SourceGear</a>'s <a
+       href="http://www.sourcegear.com/vault/index.asp">Vault</a>. They
+       even funded the development of our Web Services classes back in
+       2002. Another example is OpenLink's
+       <a href="http://www.openlinksw.com/virtuoso/">Virtuoso</a>. People
+       from OpenLink also contributed to Mono.
+       
 
-       Tim started work on the Web Services.  Although we have a
-       SoapFormatter as part of the remoting infrastructure already
-       (contributed by Jesus), most people will be using the ASP.NET
-       Web Services support.  Work for the supporting class libraries
-       just started recently.  
+* Hosting ASP.NET
 
-       The major missing element is a complete XmlSerializer.
+       Using ASP.NET System.Web.Hosting namespace classes you can make
+       your own ASP.NET enabled server.
 
-** HttpRuntime
+       However, if you want to take the easy path, we provide two
+       different mechanisms for hosting ASP.NET applications:
+       <ul>
+               * <a href="#xsp">XSP</a>: A light-weight web server
+               written in C#.
 
-       Patrik has authored most of the HttpRuntime support (both on
-       the System.Web and on the foundation).
+               * <a href="#mod_mono">mod_mono</a>: An <a
+               href="http://httpd.apache.org">Apache</a> module that
+               works with both 1.3 and 2.0 versions.
+       </ul>
 
+<a name="xsp">
 ** XSP
 
-       This is where initial development of the .aspx/.ascx/.asax compiler 
-       to C# took place. That compiler is now integrated in System.Web classes
-       mostly under System.Web.Compilation namespace.
-
-       We added a new web server that works with mono and MS runtime and is
-       being used to debug our classes.  It resides in xsp/server. A couple of
-       classes of this new server can be reused/extended to make an apache
-       module/cgi using mono (MonoWorkerRequest and MonoApplicationHost).
-
-       There is also a set of .aspx pages to test the server along with
-       a few user controls under xsp/test.
-
-       You can check it out from CVS and run 'make install' to test it.
-
-** Controls
-
-       A lot of work has been put in the various classes that
-       implement the controls (UI.HtmlControls and UI.WebControls),
-       but they have been coded mostly in the dark, and without being
-       able to test them in real life: Gaurav and Leen worked very
-       hard on this namespace.
-
-       We can now render all HtmlControls and all WebControls.
-
-       Help in making the controls better is appreciated.
-
-** ASP.NET and free controls.
-
-       We want to encourage developers to create open source controls
-       that can be used both on Mono's ASP.NET and Microsoft's ASP.NET.  
-
-* Web Forms: The pieces (historical)
-
-       There are a couple of components to the puzzle:
-
-       <ul>
-               * .aspx page parser (converts .aspx to C# code).
-       
-               * System.Web.HttpRuntime support.
-       
-               * Web controls (System.Web.UI.HtmlControls and
-                 System.Web.UI.WebControls).
-       
-               * Underlying infrastructure for the controls (System.Web.UI).
+       XSP is a simple web server written in C# that can be used to
+       run your ASP.NET applications.  The code is available from our
+       <a href="download.html">download page</a> or from the <a
+       href="anoncvs.html">Anonymous CVS</a> repository (module name:
+       xsp).
        
-               * HttpRuntime.ProcessRequest is the core of the ASP.NET
-                 implementation.
-       </ul>
-
-
-       Gonzalo has been working on an ASP.NET parser that takes .aspx
-       files and generated the code required to run them (the code lives in
-       module `xsp' along with a little web server for testing).
-
-       Most of the runtime support was written by Patrik Torstensson
-       (now at Intel).  This was interesting, because in order to implement
-       some of its features, Patrik had to go into the runtime/JIT engine and
-       he spent a few weeks doing work there.
+       A couple of classes of this new server can be reused/extended
+       to make an apache module/cgi using mono (MonoWorkerRequest and
+       MonoApplicationHost).  This server also uses a couple of
+       plugins distributed with Mono to support gzip HTTP transfers.
 
-       The classes for running ASP.NET are being actively written.
-       Gaurav, Leen and Patrik worked in the core of the classes
-       required to run ASP.NET web application as well as a small
-       embeddable web server.
+       There is also a set of pages, controls and web services that you
+       can use to test the server and see how ASP.NET looks like.
 
-       Duncan got our System.Web assembly to compile.
-
-** How to Help
-
-        Testing and fixing HtmlControls, WebControls and validators is an
-       easy way to help.
+       As XSP is written in C# and uses System.Web classes to perform
+       its job, it also works under MS runtime.
+       
+<a name="mod_mono">
+** mod_mono
 
-        In the CVS module XSP you can find a small web server used for
-       testing and a directory containing sample aspx pages.
+       This Apache module is available from our <a
+       href="download.html">download page</a>. The <a href="anoncvs.html">
+       cvs</a> module name is mod_mono.
 
-        You have some documentation under doc directory and in the README
-        file of each directory. They explain how to test our System.Web.
-        Testing is really easy!
+       It allows apache to serve ASP.NET pages by proxying the requests
+       to a slightly modified version of our XSP called mod-mono-server
+       that is installed along with XSP.
 
-       As the server also works with MS runtime, you can use it to check
-       what the expected results are.
+       It does not work on Windows.
 
+<div align="bottom">
+<small>Last updated: Sat, 12 Jun 2004 05:07:31 GMT</small>
+</div>