Update of /cvsroot/springnet/Spring.Net/doc/reference/src
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8898/doc/reference/src
Modified Files:
remoting.xml
Log Message:
Update to the iis-application section. Spring.Web now ensures context is initialized.
Index: remoting.xml
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/remoting.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** remoting.xml 25 Apr 2007 22:24:32 -0000 1.19
--- remoting.xml 24 Sep 2007 11:50:17 -0000 1.20
***************
*** 219,229 ****
<title>IIS Application Configuration</title>
! <para>If you are deploying a .NET remoting application inside IIS there
! is a <ulink
! url="http://forum.springframework.net/showthread.php?t=469">sample
! project </ulink>that demonstrates the necessary configuration. The basic
! idea is to start the initialization of the Spring IoC container inside
! the application start method defined in Global.asax, as shown
! below</para>
<programlisting> void Application_Start(object sender, EventArgs e)
--- 219,229 ----
<title>IIS Application Configuration</title>
! <para>If you are deploying a .NET remoting application inside IIS there is a
! <ulink url="http://forum.springframework.net/showthread.php?t=469">sample project </ulink>
! that demonstrates the necessary configuration using Spring.Web.</para>
!
! <para>Spring.Web ensures the application context is initialized, but if you don't use
! Spring.Web the idea is to start the initialization of the Spring IoC container inside
! the application start method defined in Global.asax, as shown below</para>
<programlisting> void Application_Start(object sender, EventArgs e)
|