renaming references in config and xml files

This commit is contained in:
Steve Bohlen
2012-12-23 08:55:39 -05:00
parent 4d606f8baa
commit c9598f9c53
15 changed files with 1048 additions and 90 deletions

View File

@@ -57,7 +57,7 @@
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
<!--<add name="OpenSessionInView" type="Spring.Data.NHibernate.Support.OpenSessionInViewModule, Spring.Data.NHibernate21"/>-->
<!--Module that controls the conversations at the end of the request. Ends the Conversations in timeout and pause the conversations at the end of the request.-->
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.ConversationWA.NH32"/>
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
</httpModules>
<httpHandlers>
<add verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web"/>

View File

@@ -57,7 +57,7 @@
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
<!--<add name="OpenSessionInView" type="Spring.Data.NHibernate.Support.OpenSessionInViewModule, Spring.Data.NHibernate21"/>-->
<!--Module that controls the conversations at the end of the request. Ends the Conversations in timeout and pause the conversations at the end of the request.-->
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.ConversationWA.NH32"/>
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
</httpModules>
<httpHandlers>
<add verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web"/>

View File

@@ -57,7 +57,7 @@
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
<!--<add name="OpenSessionInView" type="Spring.Data.NHibernate.Support.OpenSessionInViewModule, Spring.Data.NHibernate21"/>-->
<!--Module that controls the conversations at the end of the request. Ends the Conversations in timeout and pause the conversations at the end of the request.-->
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.ConversationWA.NH32"/>
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
</httpModules>
<httpHandlers>
<add verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web"/>

View File

@@ -24,7 +24,7 @@
<!--Conversation for 'Default.aspx'-->
<!--"convDefault" will have only one functionality: trigger the release of other conversations when started (StartResumeConversation())-->
<object name="convDefault" type="Spring.ConversationWA.Imple.WebConversationSpringState, Spring.ConversationWA.NH32" scope="session">
<object name="convDefault" type="Spring.ConversationWA.Imple.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
<property name="Id" value="convDefault"></property>
<property name="TimeOut" value="0"></property>
<property name="ConversationManager" ref="conversationManager"></property>
@@ -97,7 +97,7 @@
<!--Conversation for 'CustomerEditor.aspx', 'CustomerList.aspx', 'CustomerOrders.aspx', 'CustomerView.aspx', and 'FulfillmentResult.aspx'-->
<!--Important: If the application had other parties ("management employees" for example), they should use another conversation.-->
<object name="convCustomer" type="Spring.ConversationWA.Imple.WebConversationSpringState, Spring.ConversationWA.NH32" scope="session">
<object name="convCustomer" type="Spring.ConversationWA.Imple.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
<property name="Id" value="convCustomer"></property>
<property name="TimeOut" value="0"></property>
<property name="ConversationManager" ref="conversationManager"></property>
@@ -108,7 +108,7 @@
</object>
<!--Conversation Manager-->
<object name="conversationManager" type="Spring.ConversationWA.Imple.WebConversationManager, Spring.ConversationWA.NH32" scope="session">
<object name="conversationManager" type="Spring.ConversationWA.Imple.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
<property name="SessionFactory" ref="NHibernateSessionFactory"/>
<property name="EndPaused" value="true"/>
</object>