Update of /cvsroot/springnet/Spring.Net/examples/Spring/SpringAir/src/SpringAir.Web.2005
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8601/examples/Spring/SpringAir/src/SpringAir.Web.2005
Modified Files:
Web.config
Log Message:
fixed SPRNET-762
Index: Web.config
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/SpringAir/src/SpringAir.Web.2005/Web.config,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Web.config 8 Aug 2007 03:13:30 -0000 1.8
--- Web.config 19 Mar 2008 18:05:06 -0000 1.9
***************
*** 2,8 ****
<configuration>
<configSections>
! <sectionGroup name="common">
! <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
! </sectionGroup>
<sectionGroup name="spring">
<section name="typeAliases" type="Spring.Context.Support.TypeAliasesSectionHandler, Spring.Core"/>
--- 2,8 ----
<configuration>
<configSections>
! <sectionGroup name="common">
! <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging"/>
! </sectionGroup>
<sectionGroup name="spring">
<section name="typeAliases" type="Spring.Context.Support.TypeAliasesSectionHandler, Spring.Core"/>
***************
*** 13,45 ****
<section name="databaseSettings" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
!
! <common>
! <logging>
! <!--
You may use http://www.microsoft.com/technet/sysinternals/Miscellaneous/DebugView.mspx
for viewing TraceLogger output
-->
! <factoryAdapter type="Common.Logging.Simple.TraceLoggerFactoryAdapter, Common.Logging">
! <arg key="Level" value="ALL" /> <!-- Possible values are ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF -->
! </factoryAdapter>
! </logging>
! </common>
!
! <spring>
! <parsers>
! <parser type="Spring.Data.Config.DatabaseNamespaceParser, Spring.Data" />
! </parsers>
! <context>
! <resource uri="~/Config/Aspects.xml"/>
<resource uri="~/Config/Web.xml"/>
<resource uri="~/Config/Services.xml"/>
-
<!-- TEST CONFIGURATION -->
-
<resource uri="~/Config/Test/Services.xml"/>
<resource uri="~/Config/Test/Dao.xml"/>
-
<!-- PRODUCTION CONFIGURATION -->
! <!--
<resource uri="~/Config/Production/Services.xml"/>
<resource uri="~/Config/Production/Dao.xml"/>
--- 13,41 ----
<section name="databaseSettings" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
! <common>
! <logging>
! <!--
You may use http://www.microsoft.com/technet/sysinternals/Miscellaneous/DebugView.mspx
for viewing TraceLogger output
-->
! <factoryAdapter type="Common.Logging.Simple.TraceLoggerFactoryAdapter, Common.Logging">
! <arg key="Level" value="ALL"/>
! <!-- Possible values are ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF -->
! </factoryAdapter>
! </logging>
! </common>
! <spring>
! <parsers>
! <parser type="Spring.Data.Config.DatabaseNamespaceParser, Spring.Data"/>
! </parsers>
! <context>
! <resource uri="~/Config/Aspects.xml"/>
<resource uri="~/Config/Web.xml"/>
<resource uri="~/Config/Services.xml"/>
<!-- TEST CONFIGURATION -->
<resource uri="~/Config/Test/Services.xml"/>
<resource uri="~/Config/Test/Dao.xml"/>
<!-- PRODUCTION CONFIGURATION -->
! <!--
<resource uri="~/Config/Production/Services.xml"/>
<resource uri="~/Config/Production/Dao.xml"/>
***************
*** 47,51 ****
</context>
</spring>
-
<system.web>
<pages>
--- 43,46 ----
***************
*** 66,73 ****
<assemblies>
<add assembly="System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
! <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies>
</compilation>
</system.web>
-
<databaseSettings>
<add key="db.server" value="(local)"/>
--- 61,68 ----
<assemblies>
<add assembly="System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
! <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
! <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies>
</compilation>
</system.web>
<databaseSettings>
<add key="db.server" value="(local)"/>
***************
*** 76,79 ****
<add key="db.schema" value="SpringAir"/>
</databaseSettings>
-
</configuration>
--- 71,73 ----
|