2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / web / asp-net
index 4a2445f7fa88e5b438f1b64b49d46fc3dd4f56db..562c7e411f933f1432ea6b84ac770e76097ca1c1 100755 (executable)
@@ -7,28 +7,38 @@
                * Web Services (the SOAP-based rpc system).
        </ul>
 
-       Both are functional at this point, and applications like
-       "IBuySpy" run with Mono.
-
-       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.  Lluis is in charge of
-       it now and web services are now supported. He also added a web
-       service sample to the XSP server set of tests.
+* Hosting ASP.NET
 
-** Hosting
+       Using ASP.NET System.Web.Hosting namespace classes you can make
+       your own ASP.NET enabled server.
 
-       ASP.NET provides a hosting interface.  Today we ship support
-       for two different hosting mechanisms:
+       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 C# web server.
+               * <a href="#xsp">XSP</a>: A light-weight web server
+               written in C#.
 
-               * <a href="#mod_mono">mod_mono</a>: An apache module
-                 that can host the Mono runtime and the ASP.NET runtime
+               * <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">
        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)/.
+       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).  This server also uses a couple of
        plugins distributed with Mono to support gzip HTTP transfers.
 
-       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.
+       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.
 
+       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
-
-       This Apache module available at <a
-       href="http://www.apacheworld.org/modmono/">ApacheWorld.org</a>
-       hosts the Mono runtime and the Mono's ASP.NET runtime, and
-       allows apache to server asp.net web pages.
-
-       Work is underway to improve 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.  
-
-** How to Help
-
-        Testing and fixing HtmlControls, WebControls and validators is an
-       easy way to help.
+** 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>