renaming ConversationWA folders to Conversation
This commit is contained in:
@@ -21,5 +21,5 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyTitle("Spring.ConversationWA.NH32. NHibernate 3.2 support.")]
|
||||
[assembly: AssemblyDescription("Interfaces and classes that provide 'Conversation Workaround' support in Spring.Net")]
|
||||
[assembly: AssemblyTitle("Spring.Web.Conversation.NHibernate32. NHibernate 3.2 support.")]
|
||||
[assembly: AssemblyDescription("Interfaces and classes that provide 'Long-Running Conversation' support in Spring.Net")]
|
||||
@@ -30,8 +30,8 @@ using Spring.Threading;
|
||||
using Spring.Transaction.Support;
|
||||
using Spring.Util;
|
||||
using System.Data;
|
||||
using Spring.ConversationWA;
|
||||
using System.Collections.Generic;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -369,7 +369,7 @@ namespace Spring.Data.NHibernate.Support
|
||||
|
||||
/// <summary>
|
||||
/// This sessionHolder creates a session for the active conversation only if it is
|
||||
/// needed (<see cref="Spring.ConversationWA.IConversationState.StartResumeConversation"/>).
|
||||
/// needed (<see cref="IConversationState.StartResumeConversation"/>).
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Although a NHibernateSession defers creation of db-connections until they are really
|
||||
|
||||
@@ -58,14 +58,14 @@
|
||||
<Link>CommonAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AssemblyInfo.cs" />
|
||||
<Compile Include="ConversationWA\HttpModule\ConversationModule.cs" />
|
||||
<Compile Include="ConversationWA\IConversationManager.cs" />
|
||||
<Compile Include="ConversationWA\IConversationState.cs" />
|
||||
<Compile Include="ConversationWA\Impl\InnerConversationList.cs" />
|
||||
<Compile Include="ConversationWA\Impl\WebConversationManager.cs" />
|
||||
<Compile Include="ConversationWA\Impl\WebConversationSpringState.cs" />
|
||||
<Compile Include="Data\NHibernate\Support\SessionPerConversationScope.cs" />
|
||||
<Compile Include="Data\NHibernate\Support\SessionPerConversationSettings.cs" />
|
||||
<Compile Include="Web\Conversation\HttpModule\ConversationModule.cs" />
|
||||
<Compile Include="Web\Conversation\IConversationManager.cs" />
|
||||
<Compile Include="Web\Conversation\IConversationState.cs" />
|
||||
<Compile Include="Web\Conversation\InnerConversationList.cs" />
|
||||
<Compile Include="Web\Conversation\WebConversationManager.cs" />
|
||||
<Compile Include="Web\Conversation\WebConversationSpringState.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\..\..\build-support\tools\nant\schema\nant.xsd">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -20,15 +20,12 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using Spring.Context.Support;
|
||||
using Common.Logging;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
using System.Web.UI;
|
||||
using Common.Logging;
|
||||
using Spring.Context;
|
||||
|
||||
namespace Spring.ConversationWA.HttpModule
|
||||
namespace Spring.Web.Conversation.HttpModule
|
||||
{
|
||||
/// <summary>
|
||||
/// HttpModule for ending Conversations with Timeout exceeded.
|
||||
@@ -38,12 +35,12 @@ namespace Spring.ConversationWA.HttpModule
|
||||
{
|
||||
private static readonly ILog LOG = LogManager.GetLogger(typeof(ConversationModule));
|
||||
|
||||
private IList<String> conversationManagerName;
|
||||
private IList<string> conversationManagerName;
|
||||
|
||||
/// <summary>
|
||||
/// The Names of the <see cref="IConversationManager"/>s in the <see cref="IApplicationContext"/>
|
||||
/// </summary>
|
||||
public IList<String> ConversationManagerNameList
|
||||
public IList<string> ConversationManagerNameList
|
||||
{
|
||||
get { return conversationManagerName; }
|
||||
set { conversationManagerName = value; }
|
||||
@@ -19,11 +19,9 @@
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using NHibernate;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// manager for Conversations.
|
||||
@@ -19,20 +19,11 @@
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Web;
|
||||
using System.Web.Security;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using NHibernate;
|
||||
using Spring.Data.Common;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// Port to conversation. If the object is not found in the current
|
||||
@@ -43,7 +34,7 @@ namespace Spring.ConversationWA
|
||||
/// If <see cref="Id"/> is different from spring name for this instance.
|
||||
/// </exception>
|
||||
/// <author>Hailton de Castro</author>
|
||||
public interface IConversationState: IDictionary<String, Object>
|
||||
public interface IConversationState: IDictionary<string, object>
|
||||
{
|
||||
/// <summary>
|
||||
/// Conversation id.
|
||||
@@ -19,12 +19,12 @@
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Common.Logging;
|
||||
using Iesi.Collections.Generic;
|
||||
|
||||
namespace Spring.ConversationWA.Impl
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// List that make validation for Circular Dependency for <see cref="IConversationState"/>
|
||||
@@ -23,12 +23,12 @@ using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Web;
|
||||
using Common.Logging;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
using NHibernate;
|
||||
using Spring.Context;
|
||||
using Spring.Context.Support;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
|
||||
namespace Spring.ConversationWA.Impl
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// This was made to stay under session scope.
|
||||
@@ -19,17 +19,17 @@
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Web;
|
||||
using Spring.Objects.Factory;
|
||||
using Common.Logging;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using Spring.Data.Common;
|
||||
using System.Collections.Generic;
|
||||
using System.Web;
|
||||
using Common.Logging;
|
||||
using NHibernate;
|
||||
using Spring.Context;
|
||||
using Spring.Context.Support;
|
||||
using Spring.Data.Common;
|
||||
using Spring.Objects.Factory;
|
||||
|
||||
namespace Spring.ConversationWA.Impl
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// Implementation of conversation in the infrastructure of Spring.
|
||||
@@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyTitle("Spring.ConversationWA.NH33. NHibernate 3.3 support.")]
|
||||
[assembly: AssemblyDescription("Interfaces and classes that provide 'Conversation Workaround' support in Spring.Net")]
|
||||
[assembly: AssemblyTitle("Spring.Web.Conversation.NHibernate33. NHibernate 3.3 support.")]
|
||||
[assembly: AssemblyDescription("Interfaces and classes that provide 'Long-Running Conversation' support in Spring.Net")]
|
||||
@@ -1 +0,0 @@
|
||||
sources are linked here from Spring.ConversationWA.NH32
|
||||
@@ -1 +0,0 @@
|
||||
sources are linked here from Spring.ConversationWA.NH32
|
||||
@@ -57,30 +57,30 @@
|
||||
<Compile Include="..\CommonAssemblyInfo.cs">
|
||||
<Link>CommonAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\HttpModule\ConversationModule.cs">
|
||||
<Link>Conversation\HttpModule\ConversationModule.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\IConversationManager.cs">
|
||||
<Link>Conversation\IConversationManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\IConversationState.cs">
|
||||
<Link>Conversation\IConversationState.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\Impl\InnerConversationList.cs">
|
||||
<Link>Conversation\Impl\InnerConversationList.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\Impl\WebConversationManager.cs">
|
||||
<Link>Conversation\Impl\WebConversationManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\ConversationWA\Impl\WebConversationSpringState.cs">
|
||||
<Link>Conversation\Impl\WebConversationSpringState.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Data\NHibernate\Support\SessionPerConversationScope.cs">
|
||||
<Link>Data\NHibernate\Support\SessionPerConversationScope.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Data\NHibernate\Support\SessionPerConversationSettings.cs">
|
||||
<Link>Data\NHibernate\Support\SessionPerConversationSettings.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\HttpModule\ConversationModule.cs">
|
||||
<Link>Web\Conversation\HttpModule\ConversationModule.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\IConversationManager.cs">
|
||||
<Link>Web\Conversation\IConversationManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\IConversationState.cs">
|
||||
<Link>Web\Conversation\IConversationState.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\InnerConversationList.cs">
|
||||
<Link>Web\Conversation\InnerConversationList.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\WebConversationManager.cs">
|
||||
<Link>Web\Conversation\WebConversationManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32\Web\Conversation\WebConversationSpringState.cs">
|
||||
<Link>Web\Conversation\WebConversationSpringState.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: AssemblyTitle("Spring.ConversationWA.NH32 Integration Tests")]
|
||||
[assembly: AssemblyDescription("Integration tests for Spring.ConversationWA.NH32.Tests assembly")]
|
||||
[assembly: AssemblyTitle("Spring.Web.Conversation.NH32 Integration Tests")]
|
||||
[assembly: AssemblyDescription("Integration tests for Spring.Web.Conversation.NH32.Tests assembly")]
|
||||
|
||||
@@ -21,10 +21,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.UI;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// Base class for test pages for test
|
||||
@@ -21,10 +21,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.UI;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// Base class for test pages for test
|
||||
@@ -30,7 +30,7 @@ using System.Runtime.Serialization;
|
||||
using System.Reflection;
|
||||
using Spring.Entities;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
/// <summary>
|
||||
/// Module that forces the serialization and deserialization of the session content to simulate a clustered server for
|
||||
@@ -24,7 +24,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Spring.ConversationWA
|
||||
namespace Spring.Web.Conversation
|
||||
{
|
||||
[TestFixture]
|
||||
public class SimpleTest
|
||||
Binary file not shown.
@@ -8,12 +8,13 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using NUnit.Framework;
|
||||
using Spring.Context.Support;
|
||||
using System.Text;
|
||||
using Common.Logging;
|
||||
using Spring.Context;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class CircularDependenceTest : System.Web.UI.Page, IApplicationContextAware
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
using NHibernate;
|
||||
using Spring.Entities;
|
||||
@@ -19,9 +19,10 @@ using NHibernate.Impl;
|
||||
using System.Reflection;
|
||||
using NHibernate.Cfg;
|
||||
using Spring.Context;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
/// <summary>
|
||||
/// Page for <see cref="Spring.ConversationWA.WebConversationStateTest.ConnectionReleaseModeIssue()"/>.
|
||||
/// Page for <see cref="Spring.Web.Conversation.WebConversationStateTest.ConnectionReleaseModeIssue()"/>.
|
||||
/// </summary>
|
||||
public partial class ConnectionReleaseModeIssue : System.Web.UI.Page, IApplicationContextAware
|
||||
{
|
||||
@@ -8,8 +8,9 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Bsn;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class EndConversationTestBegin : System.Web.UI.Page
|
||||
{
|
||||
@@ -9,7 +9,8 @@ using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.Bsn;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class EndConversationTestEnd : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,9 +8,10 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using NHibernate;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class EndPausedSessionIsClosedA : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,9 +8,10 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using NHibernate;
|
||||
using Spring.Entities;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class EndPausedSessionIsClosedB : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,8 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class EndPausedTest : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,8 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class GetParentObjetFromChild : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,13 +8,13 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.ConversationWA.Impl;
|
||||
using Spring.Web.Conversation;
|
||||
using System.Text.RegularExpressions;
|
||||
using NHibernate;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
using Common.Logging;
|
||||
using Spring.Objects.Factory;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class IoeTests : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class PatialEndConv_A_B_Begin : PatialEndConvBeginBasePage
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class PatialEndConv_A_B_End : PatialEndConvEndBasePage
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class PatialEndConv_A_Begin : PatialEndConvBeginBasePage
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class PatialEndConv_A_End : PatialEndConvEndBasePage
|
||||
{
|
||||
@@ -8,10 +8,11 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using System.Threading;
|
||||
using NHibernate;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class RedirectErrorNoPauseConversation : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,9 +8,10 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using NHibernate;
|
||||
using Spring.Entities;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class SPCLazyLoadTest_A_Begin : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,10 +8,11 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using Common.Logging;
|
||||
using NHibernate;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class SPCLazyLoadTest_A_Status : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,10 +8,11 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using NHibernate;
|
||||
using Common.Logging;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class SPCSwitchConversationSameRequest : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,7 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Data.NHibernate.Support;
|
||||
using NHibernate;
|
||||
using Spring.Entities;
|
||||
@@ -22,9 +22,10 @@ using Spring.Context;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization.Formatters.Binary;
|
||||
using System.IO;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
/// <summary>
|
||||
/// Page for <see cref="Spring.ConversationWA.WebConversationStateTest.SerializeConversationTest()"/>.
|
||||
/// Page for <see cref="Spring.Web.Conversation.WebConversationStateTest.SerializeConversationTest()"/>.
|
||||
/// </summary>
|
||||
public partial class SerializeConversationTest : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,9 +8,10 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using NHibernate;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class SessionIsClosedA : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,9 +8,10 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Entities;
|
||||
using NHibernate;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class SessionIsClosedB : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,8 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class TimeOut_NoTimeOut : System.Web.UI.Page
|
||||
{
|
||||
@@ -8,7 +8,8 @@ using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
public partial class TimeOut_WithTimeOut : System.Web.UI.Page
|
||||
{
|
||||
@@ -48,9 +48,9 @@
|
||||
|
||||
<httpModules>
|
||||
<add name="NUnitAspExModule" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
<add name="ConversationModule" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
</httpModules>
|
||||
<httpHandlers>
|
||||
<add verb="*" path="*.test" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -63,9 +63,9 @@
|
||||
<validation validateIntegratedModeConfiguration="false" />
|
||||
<modules>
|
||||
<add name="NUnitAspExModule" preCondition="integratedMode" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="Spring" preCondition="integratedMode" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
</modules>
|
||||
<handlers>
|
||||
<add name="AspTestMethodHandler" verb="*" path="*.test" preCondition="integratedMode" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -61,7 +61,7 @@
|
||||
</root>
|
||||
|
||||
<!--Use it to view injection activite at obtain evidence of injection. If injection ocurre, there is only one instaciation-->
|
||||
<logger name="Spring.ConversationWA">
|
||||
<logger name="Spring.Web.Conversation">
|
||||
<priority value="TRACE" />
|
||||
</logger>
|
||||
</log4net>
|
||||
@@ -12,12 +12,12 @@
|
||||
<property name="Conversation" ref="convEndConversationTest"></property>
|
||||
<property name="ConversationEvidenceBsn" expression="@(convEndConversationTest)['conversationEvidenceBsn']"></property>
|
||||
</object>
|
||||
<object name="convEndConversationTest" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convEndConversationTest" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convEndConversationTest"></property>
|
||||
<property name="['conversationEvidenceBsn']" ref="conversationEvidenceBsn"></property>
|
||||
</object>
|
||||
|
||||
<object name="convCircularDependenceTest_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convCircularDependenceTest_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -25,7 +25,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convCircularDependenceTest_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convCircularDependenceTest_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -33,7 +33,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convCircularDependenceTest_A_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convCircularDependenceTest_A_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A_A_A"></property>
|
||||
<property name="['conversationEvidenceBsn']" ref="conversationEvidenceBsn"></property>
|
||||
</object>
|
||||
@@ -52,7 +52,7 @@
|
||||
<object type="PatialEndConv_A_B_End.aspx">
|
||||
<property name="Conversation" ref="convPatialEndConv_A_B"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -62,10 +62,10 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_A"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A_B" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -74,20 +74,20 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A_B_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B_A"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B_B" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A_B_B" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B_B"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_C" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convPatialEndConv_A_C" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_C"></property>
|
||||
</object>
|
||||
|
||||
<object type="GetParentObjetFromChild.aspx">
|
||||
<property name="Conversation" ref="convGetParentObjetFromChildChild"></property>
|
||||
</object>
|
||||
<object name="convGetParentObjetFromChildParent" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convGetParentObjetFromChildParent" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convGetParentObjetFromChildParent"></property>
|
||||
<property name="['parentKey']" value="parentValue"></property>
|
||||
<property name="['overwrittenKey']" value="overwrittenValueParent"></property>
|
||||
@@ -97,7 +97,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convGetParentObjetFromChildChild" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convGetParentObjetFromChildChild" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convGetParentObjetFromChildChild"></property>
|
||||
<property name="ParentConversation" ref="convGetParentObjetFromChildParent"></property>
|
||||
<property name="['childKey']" value="childValue"></property>
|
||||
@@ -110,7 +110,7 @@
|
||||
<object type="TimeOut_WithTimeOut.aspx">
|
||||
<property name="Conversation" ref="convTimeOut"></property>
|
||||
</object>
|
||||
<object name="convTimeOut" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convTimeOut" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convTimeOut"></property>
|
||||
<property name="TimeOut" value="60000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -147,7 +147,7 @@
|
||||
<object type="SPCLazyLoadTest_A_Status.aspx">
|
||||
<property name="Conversation" ref="convSPCLazyLoad"></property>
|
||||
</object>
|
||||
<object name="convSPCLazyLoad" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convSPCLazyLoad" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convSPCLazyLoad"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -160,14 +160,14 @@
|
||||
<property name="ConversationA" ref="convSPCSwitchConversationSameRequestA"></property>
|
||||
<property name="SessionFactory" ref="MySessionFactory"/>
|
||||
</object>
|
||||
<object name="convSPCSwitchConversationSameRequestA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convSPCSwitchConversationSameRequestA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convSPCSwitchConversationSameRequestA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convSPCSwitchConversationSameRequestB" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convSPCSwitchConversationSameRequestB" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convSPCSwitchConversationSameRequestB"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -180,7 +180,7 @@
|
||||
<object type="RedirectErrorNoPauseConversation.aspx">
|
||||
<property name="Conversation" ref="convRedirectErrorNoPauseConversation"></property>
|
||||
</object>
|
||||
<object name="convRedirectErrorNoPauseConversation" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convRedirectErrorNoPauseConversation" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convRedirectErrorNoPauseConversation"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -197,14 +197,14 @@
|
||||
<property name="SessionFactory" ref="MySessionFactory"></property>
|
||||
</object>
|
||||
|
||||
<object name="convIoeTestsA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convIoeTestsA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convIoeTestsA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convIoeTestsAA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convIoeTestsAA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convIoeTestsAA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -217,15 +217,15 @@
|
||||
<property name="ConvA" ref="convAEndPaused"></property>
|
||||
<property name="ConvB" ref="convBEndPaused"></property>
|
||||
</object>
|
||||
<object name="convAEndPaused" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convAEndPaused" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convAEndPaused"></property>
|
||||
<property name="ConversationManager" ref="conversationManagerEndPaused"></property>
|
||||
</object>
|
||||
<object name="convBEndPaused" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convBEndPaused" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convBEndPaused"></property>
|
||||
<property name="ConversationManager" ref="conversationManagerEndPaused"></property>
|
||||
</object>
|
||||
<object name="conversationManagerEndPaused" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="conversationManagerEndPaused" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="EndPaused" value="true"></property>
|
||||
</object>
|
||||
<!--END: EndPausedTest Tests -->
|
||||
@@ -238,14 +238,14 @@
|
||||
<property name="Conversation" ref="convBSessionIsClosed"></property>
|
||||
<property name="ConversationA" ref="convASessionIsClosed"></property>
|
||||
</object>
|
||||
<object name="convASessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convASessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convASessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convBSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convBSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convBSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -261,21 +261,21 @@
|
||||
<object type="EndPausedSessionIsClosedB.aspx">
|
||||
<property name="Conversation" ref="convBEndPausedSessionIsClosed"></property>
|
||||
</object>
|
||||
<object name="convAEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convAEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convAEndPausedSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="convMngEndPausedSessionIsClosed"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convBEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convBEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convBEndPausedSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="convMngEndPausedSessionIsClosed"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convMngEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convMngEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="EndPaused" value="true"/>
|
||||
</object>
|
||||
@@ -287,7 +287,7 @@
|
||||
<property name="SessionFactory" ref="MySessionFactory"/>
|
||||
<property name="ConnectionReleaseModeIssueBsn" ref="connectionReleaseModeIssueBsn"/>
|
||||
</object>
|
||||
<object name="convConnectionReleaseModeIssue" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convConnectionReleaseModeIssue" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convConnectionReleaseModeIssue"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -303,7 +303,7 @@
|
||||
<object type="SerializeConversationTest.aspx">
|
||||
<property name="Conversation" ref="convSerializeConversationTest"/>
|
||||
</object>
|
||||
<object name="convSerializeConversationTest" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="convSerializeConversationTest" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="Id" value="convSerializeConversationTest"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -313,7 +313,7 @@
|
||||
<!--END: SerializeConversationTest-->
|
||||
|
||||
<!-- BEGIN: Common configuration-->
|
||||
<object name="conversationManager" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<object name="conversationManager" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate32" scope="session">
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
</object>
|
||||
|
||||
@@ -48,9 +48,9 @@
|
||||
|
||||
<httpModules>
|
||||
<add name="NUnitAspExModule" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
<add name="ConversationModule" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
</httpModules>
|
||||
<httpHandlers>
|
||||
<add verb="*" path="*.test" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -63,9 +63,9 @@
|
||||
<validation validateIntegratedModeConfiguration="false" />
|
||||
<modules>
|
||||
<add name="NUnitAspExModule" preCondition="integratedMode" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate32.Tests"/>
|
||||
<add name="Spring" preCondition="integratedMode" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate32"/>
|
||||
</modules>
|
||||
<handlers>
|
||||
<add name="AspTestMethodHandler" verb="*" path="*.test" preCondition="integratedMode" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -21,7 +21,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
namespace Spring.Entities
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Spring.ConversationWA;
|
||||
using Spring.Web.Conversation;
|
||||
|
||||
namespace Spring.Entities
|
||||
{
|
||||
|
||||
@@ -76,15 +76,15 @@
|
||||
<Compile Include="Bsn\IConversationEvidenceBsn.cs" />
|
||||
<Compile Include="Bsn\INoDeferedErrorBsn.cs" />
|
||||
<Compile Include="Bsn\NoDeferedErrorBsnImpl.cs" />
|
||||
<Compile Include="ConversationWA\PatialEndConvBeginBasePage.cs">
|
||||
<Compile Include="Conversation\PatialEndConvBeginBasePage.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ConversationWA\PatialEndConvEndBasePage.cs">
|
||||
<Compile Include="Conversation\PatialEndConvEndBasePage.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ConversationWA\SerializeConversationTestModule.cs" />
|
||||
<Compile Include="ConversationWA\SimpleTest.cs" />
|
||||
<Compile Include="ConversationWA\WebConversationStateTest.cs" />
|
||||
<Compile Include="Conversation\SerializeConversationTestModule.cs" />
|
||||
<Compile Include="Conversation\SimpleTest.cs" />
|
||||
<Compile Include="Conversation\WebConversationStateTest.cs" />
|
||||
<Compile Include="Entities\SPCDetailEnt.cs" />
|
||||
<Compile Include="Entities\SPCMasterEnt.cs" />
|
||||
<Compile Include="Spring\Data\Common\ConnectionCreationTrackingDbProvider.cs" />
|
||||
@@ -116,9 +116,9 @@
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\log4net.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\web.config.net-2.0" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\log4net.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\web.config.net-2.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Entities\SPCDetailEnt.hbm.xml" />
|
||||
@@ -126,7 +126,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\Web.Config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\Web.Config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
@@ -143,7 +143,7 @@
|
||||
<PostBuildEvent>echo "Copying TestWebs to output directory"
|
||||
rd /S /Q "$(TargetDir)Data"
|
||||
xcopy "$(ProjectDir)Data" "$(TargetDir)Data\" /y /s
|
||||
rd /S /Q "$(TargetDir)Data\Spring\ConversationWA\WebConversationStateTest\Bin"
|
||||
rd /S /Q "$(TargetDir)Data\Spring\Conversation\WebConversationStateTest\Bin"
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -90,100 +90,100 @@
|
||||
<Compile Include="Bsn\IConversationEvidenceBsn.cs" />
|
||||
<Compile Include="Bsn\INoDeferedErrorBsn.cs" />
|
||||
<Compile Include="Bsn\NoDeferedErrorBsnImpl.cs" />
|
||||
<Compile Include="ConversationWA\PatialEndConvBeginBasePage.cs">
|
||||
<Compile Include="Conversation\PatialEndConvBeginBasePage.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ConversationWA\PatialEndConvEndBasePage.cs">
|
||||
<Compile Include="Conversation\PatialEndConvEndBasePage.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ConversationWA\SerializeConversationTestModule.cs" />
|
||||
<Compile Include="ConversationWA\SimpleTest.cs" />
|
||||
<Compile Include="ConversationWA\WebConversationStateTest.cs" />
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\CircularDependenceTest.aspx.cs">
|
||||
<Compile Include="Conversation\SerializeConversationTestModule.cs" />
|
||||
<Compile Include="Conversation\SimpleTest.cs" />
|
||||
<Compile Include="Conversation\WebConversationStateTest.cs" />
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\CircularDependenceTest.aspx.cs">
|
||||
<DependentUpon>CircularDependenceTest.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\ConnectionReleaseModeIssue.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\ConnectionReleaseModeIssue.aspx.cs">
|
||||
<DependentUpon>ConnectionReleaseModeIssue.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\EndConversationTestBegin.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\EndConversationTestBegin.aspx.cs">
|
||||
<DependentUpon>EndConversationTestBegin.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\EndConversationTestEnd.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\EndConversationTestEnd.aspx.cs">
|
||||
<DependentUpon>EndConversationTestEnd.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedSessionIsClosedA.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedSessionIsClosedA.aspx.cs">
|
||||
<DependentUpon>EndPausedSessionIsClosedA.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedSessionIsClosedB.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedSessionIsClosedB.aspx.cs">
|
||||
<DependentUpon>EndPausedSessionIsClosedB.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedTest.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedTest.aspx.cs">
|
||||
<DependentUpon>EndPausedTest.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\GetParentObjetFromChild.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\GetParentObjetFromChild.aspx.cs">
|
||||
<DependentUpon>GetParentObjetFromChild.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\IoeTests.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\IoeTests.aspx.cs">
|
||||
<DependentUpon>IoeTests.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_Begin.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_Begin.aspx.cs">
|
||||
<DependentUpon>PatialEndConv_A_Begin.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_B_Begin.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_B_Begin.aspx.cs">
|
||||
<DependentUpon>PatialEndConv_A_B_Begin.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_B_End.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_B_End.aspx.cs">
|
||||
<DependentUpon>PatialEndConv_A_B_End.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_End.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_End.aspx.cs">
|
||||
<DependentUpon>PatialEndConv_A_End.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\RedirectErrorNoPauseConversation.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\RedirectErrorNoPauseConversation.aspx.cs">
|
||||
<DependentUpon>RedirectErrorNoPauseConversation.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SerializeConversationTest.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SerializeConversationTest.aspx.cs">
|
||||
<DependentUpon>SerializeConversationTest.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SessionIsClosedA.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SessionIsClosedA.aspx.cs">
|
||||
<DependentUpon>SessionIsClosedA.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SessionIsClosedB.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SessionIsClosedB.aspx.cs">
|
||||
<DependentUpon>SessionIsClosedB.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCLazyLoadTest_A_Begin.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SPCLazyLoadTest_A_Begin.aspx.cs">
|
||||
<DependentUpon>SPCLazyLoadTest_A_Begin.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCLazyLoadTest_A_Status.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SPCLazyLoadTest_A_Status.aspx.cs">
|
||||
<DependentUpon>SPCLazyLoadTest_A_Status.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCSwitchConversationSameRequest.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\SPCSwitchConversationSameRequest.aspx.cs">
|
||||
<DependentUpon>SPCSwitchConversationSameRequest.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\TimeOut_NoTimeOut.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\TimeOut_NoTimeOut.aspx.cs">
|
||||
<DependentUpon>TimeOut_NoTimeOut.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Data\Spring\ConversationWA\WebConversationStateTest\TimeOut_WithTimeOut.aspx.cs">
|
||||
<Compile Include="Data\Spring\Conversation\WebConversationStateTest\TimeOut_WithTimeOut.aspx.cs">
|
||||
<DependentUpon>TimeOut_WithTimeOut.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
@@ -218,9 +218,9 @@
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\log4net.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\web.config.net-2.0" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\log4net.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\web.config.net-2.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Entities\SPCDetailEnt.hbm.xml" />
|
||||
@@ -228,7 +228,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\Web.Config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\Web.Config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
@@ -256,30 +256,30 @@
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\CircularDependenceTest.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\ConnectionReleaseModeIssue.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\EndConversationTestBegin.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\EndConversationTestEnd.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedSessionIsClosedA.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedSessionIsClosedB.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\EndPausedTest.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\GetParentObjetFromChild.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\IoeTests.aspx">
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\CircularDependenceTest.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\ConnectionReleaseModeIssue.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\EndConversationTestBegin.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\EndConversationTestEnd.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedSessionIsClosedA.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedSessionIsClosedB.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\EndPausedTest.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\GetParentObjetFromChild.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\IoeTests.aspx">
|
||||
<SubType>Code</SubType>
|
||||
</Content>
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_Begin.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_B_Begin.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_B_End.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\PatialEndConv_A_End.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\RedirectErrorNoPauseConversation.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SerializeConversationTest.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SessionIsClosedA.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SessionIsClosedB.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCLazyLoadTest_A_Begin.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCLazyLoadTest_A_Status.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\SPCSwitchConversationSameRequest.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\TimeOut_NoTimeOut.aspx" />
|
||||
<Content Include="Data\Spring\ConversationWA\WebConversationStateTest\TimeOut_WithTimeOut.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_Begin.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_B_Begin.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_B_End.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\PatialEndConv_A_End.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\RedirectErrorNoPauseConversation.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SerializeConversationTest.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SessionIsClosedA.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SessionIsClosedB.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SPCLazyLoadTest_A_Begin.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SPCLazyLoadTest_A_Status.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\SPCSwitchConversationSameRequest.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\TimeOut_NoTimeOut.aspx" />
|
||||
<Content Include="Data\Spring\Conversation\WebConversationStateTest\TimeOut_WithTimeOut.aspx" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
@@ -293,7 +293,7 @@
|
||||
<PostBuildEvent>echo "Copying TestWebs to output directory"
|
||||
rd /S /Q "$(TargetDir)Data"
|
||||
xcopy "$(ProjectDir)Data" "$(TargetDir)Data\" /y /s
|
||||
rd /S /Q "$(TargetDir)Data\Spring\ConversationWA\WebConversationStateTest\Bin"
|
||||
rd /S /Q "$(TargetDir)Data\Spring\Conversation\WebConversationStateTest\Bin"
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -48,9 +48,9 @@
|
||||
|
||||
<httpModules>
|
||||
<add name="NUnitAspExModule" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
<add name="ConversationModule" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
</httpModules>
|
||||
<httpHandlers>
|
||||
<add verb="*" path="*.test" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -63,9 +63,9 @@
|
||||
<validation validateIntegratedModeConfiguration="false" />
|
||||
<modules>
|
||||
<add name="NUnitAspExModule" preCondition="integratedMode" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="Spring" preCondition="integratedMode" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
</modules>
|
||||
<handlers>
|
||||
<add name="AspTestMethodHandler" verb="*" path="*.test" preCondition="integratedMode" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -12,12 +12,12 @@
|
||||
<property name="Conversation" ref="convEndConversationTest"></property>
|
||||
<property name="ConversationEvidenceBsn" expression="@(convEndConversationTest)['conversationEvidenceBsn']"></property>
|
||||
</object>
|
||||
<object name="convEndConversationTest" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convEndConversationTest" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convEndConversationTest"></property>
|
||||
<property name="['conversationEvidenceBsn']" ref="conversationEvidenceBsn"></property>
|
||||
</object>
|
||||
|
||||
<object name="convCircularDependenceTest_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convCircularDependenceTest_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -25,7 +25,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convCircularDependenceTest_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convCircularDependenceTest_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -33,7 +33,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convCircularDependenceTest_A_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convCircularDependenceTest_A_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convCircularDependenceTest_A_A_A"></property>
|
||||
<property name="['conversationEvidenceBsn']" ref="conversationEvidenceBsn"></property>
|
||||
</object>
|
||||
@@ -52,7 +52,7 @@
|
||||
<object type="PatialEndConv_A_B_End.aspx">
|
||||
<property name="Conversation" ref="convPatialEndConv_A_B"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -62,10 +62,10 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_A"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A_B" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B"></property>
|
||||
<property name="InnerConversations">
|
||||
<list>
|
||||
@@ -74,20 +74,20 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B_A" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A_B_A" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B_A"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_B_B" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A_B_B" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_B_B"></property>
|
||||
</object>
|
||||
<object name="convPatialEndConv_A_C" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convPatialEndConv_A_C" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convPatialEndConv_A_C"></property>
|
||||
</object>
|
||||
|
||||
<object type="GetParentObjetFromChild.aspx">
|
||||
<property name="Conversation" ref="convGetParentObjetFromChildChild"></property>
|
||||
</object>
|
||||
<object name="convGetParentObjetFromChildParent" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convGetParentObjetFromChildParent" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convGetParentObjetFromChildParent"></property>
|
||||
<property name="['parentKey']" value="parentValue"></property>
|
||||
<property name="['overwrittenKey']" value="overwrittenValueParent"></property>
|
||||
@@ -97,7 +97,7 @@
|
||||
</list>
|
||||
</property>
|
||||
</object>
|
||||
<object name="convGetParentObjetFromChildChild" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convGetParentObjetFromChildChild" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convGetParentObjetFromChildChild"></property>
|
||||
<property name="ParentConversation" ref="convGetParentObjetFromChildParent"></property>
|
||||
<property name="['childKey']" value="childValue"></property>
|
||||
@@ -110,7 +110,7 @@
|
||||
<object type="TimeOut_WithTimeOut.aspx">
|
||||
<property name="Conversation" ref="convTimeOut"></property>
|
||||
</object>
|
||||
<object name="convTimeOut" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convTimeOut" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convTimeOut"></property>
|
||||
<property name="TimeOut" value="60000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -147,7 +147,7 @@
|
||||
<object type="SPCLazyLoadTest_A_Status.aspx">
|
||||
<property name="Conversation" ref="convSPCLazyLoad"></property>
|
||||
</object>
|
||||
<object name="convSPCLazyLoad" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convSPCLazyLoad" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convSPCLazyLoad"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -160,14 +160,14 @@
|
||||
<property name="ConversationA" ref="convSPCSwitchConversationSameRequestA"></property>
|
||||
<property name="SessionFactory" ref="MySessionFactory"/>
|
||||
</object>
|
||||
<object name="convSPCSwitchConversationSameRequestA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convSPCSwitchConversationSameRequestA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convSPCSwitchConversationSameRequestA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convSPCSwitchConversationSameRequestB" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convSPCSwitchConversationSameRequestB" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convSPCSwitchConversationSameRequestB"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -180,7 +180,7 @@
|
||||
<object type="RedirectErrorNoPauseConversation.aspx">
|
||||
<property name="Conversation" ref="convRedirectErrorNoPauseConversation"></property>
|
||||
</object>
|
||||
<object name="convRedirectErrorNoPauseConversation" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convRedirectErrorNoPauseConversation" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convRedirectErrorNoPauseConversation"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -197,14 +197,14 @@
|
||||
<property name="SessionFactory" ref="MySessionFactory"></property>
|
||||
</object>
|
||||
|
||||
<object name="convIoeTestsA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convIoeTestsA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convIoeTestsA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convIoeTestsAA" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convIoeTestsAA" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convIoeTestsAA"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -217,15 +217,15 @@
|
||||
<property name="ConvA" ref="convAEndPaused"></property>
|
||||
<property name="ConvB" ref="convBEndPaused"></property>
|
||||
</object>
|
||||
<object name="convAEndPaused" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convAEndPaused" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convAEndPaused"></property>
|
||||
<property name="ConversationManager" ref="conversationManagerEndPaused"></property>
|
||||
</object>
|
||||
<object name="convBEndPaused" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convBEndPaused" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convBEndPaused"></property>
|
||||
<property name="ConversationManager" ref="conversationManagerEndPaused"></property>
|
||||
</object>
|
||||
<object name="conversationManagerEndPaused" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="conversationManagerEndPaused" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="EndPaused" value="true"></property>
|
||||
</object>
|
||||
<!--END: EndPausedTest Tests -->
|
||||
@@ -238,14 +238,14 @@
|
||||
<property name="Conversation" ref="convBSessionIsClosed"></property>
|
||||
<property name="ConversationA" ref="convASessionIsClosed"></property>
|
||||
</object>
|
||||
<object name="convASessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convASessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convASessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convBSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convBSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convBSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -261,21 +261,21 @@
|
||||
<object type="EndPausedSessionIsClosedB.aspx">
|
||||
<property name="Conversation" ref="convBEndPausedSessionIsClosed"></property>
|
||||
</object>
|
||||
<object name="convAEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convAEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convAEndPausedSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="convMngEndPausedSessionIsClosed"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convBEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convBEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convBEndPausedSessionIsClosed"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="convMngEndPausedSessionIsClosed"></property>
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="DbProviderName" value="DbProvider"/>
|
||||
</object>
|
||||
<object name="convMngEndPausedSessionIsClosed" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convMngEndPausedSessionIsClosed" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
<property name="EndPaused" value="true"/>
|
||||
</object>
|
||||
@@ -287,7 +287,7 @@
|
||||
<property name="SessionFactory" ref="MySessionFactory"/>
|
||||
<property name="ConnectionReleaseModeIssueBsn" ref="connectionReleaseModeIssueBsn"/>
|
||||
</object>
|
||||
<object name="convConnectionReleaseModeIssue" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convConnectionReleaseModeIssue" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convConnectionReleaseModeIssue"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -303,7 +303,7 @@
|
||||
<object type="SerializeConversationTest.aspx">
|
||||
<property name="Conversation" ref="convSerializeConversationTest"/>
|
||||
</object>
|
||||
<object name="convSerializeConversationTest" type="Spring.ConversationWA.Impl.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="convSerializeConversationTest" type="Spring.Web.Conversation.WebConversationSpringState, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="Id" value="convSerializeConversationTest"></property>
|
||||
<property name="TimeOut" value="600000"></property>
|
||||
<property name="ConversationManager" ref="conversationManager"></property>
|
||||
@@ -313,7 +313,7 @@
|
||||
<!--END: SerializeConversationTest-->
|
||||
|
||||
<!-- BEGIN: Common configuration-->
|
||||
<object name="conversationManager" type="Spring.ConversationWA.Impl.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<object name="conversationManager" type="Spring.Web.Conversation.WebConversationManager, Spring.Web.Conversation.NHibernate33" scope="session">
|
||||
<property name="SessionFactoryName" value="MySessionFactory"/>
|
||||
</object>
|
||||
|
||||
@@ -48,9 +48,9 @@
|
||||
|
||||
<httpModules>
|
||||
<add name="NUnitAspExModule" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
<add name="ConversationModule" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
</httpModules>
|
||||
<httpHandlers>
|
||||
<add verb="*" path="*.test" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -63,9 +63,9 @@
|
||||
<validation validateIntegratedModeConfiguration="false" />
|
||||
<modules>
|
||||
<add name="NUnitAspExModule" preCondition="integratedMode" type="NUnitAspEx.AspTestExecutionModule, NUnitAspEx" />
|
||||
<add name="SerializeConversationTestModule" type="Spring.ConversationWA.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="SerializeConversationTestModule" type="Spring.Web.Conversation.SerializeConversationTestModule, Spring.Web.Conversation.NHibernate33.Tests"/>
|
||||
<add name="Spring" preCondition="integratedMode" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.ConversationWA.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
<add name="ConversationModule" preCondition="integratedMode" type="Spring.Web.Conversation.HttpModule.ConversationModule, Spring.Web.Conversation.NHibernate33"/>
|
||||
</modules>
|
||||
<handlers>
|
||||
<add name="AspTestMethodHandler" verb="*" path="*.test" preCondition="integratedMode" type="NUnitAspEx.AspTestMethodHandler, NUnitAspEx" validate="false" />
|
||||
@@ -89,19 +89,19 @@
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Bsn\NoDeferedErrorBsnImpl.cs">
|
||||
<Link>Bsn\NoDeferedErrorBsnImpl.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\PatialEndConvBeginBasePage.cs">
|
||||
<Link>ConversationWA\PatialEndConvBeginBasePage.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\PatialEndConvBeginBasePage.cs">
|
||||
<Link>Conversation\PatialEndConvBeginBasePage.cs</Link>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\PatialEndConvEndBasePage.cs">
|
||||
<Link>ConversationWA\PatialEndConvEndBasePage.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\PatialEndConvEndBasePage.cs">
|
||||
<Link>Conversation\PatialEndConvEndBasePage.cs</Link>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\SerializeConversationTestModule.cs">
|
||||
<Link>ConversationWA\SerializeConversationTestModule.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\SerializeConversationTestModule.cs">
|
||||
<Link>Conversation\SerializeConversationTestModule.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\WebConversationStateTest.cs">
|
||||
<Link>ConversationWA\WebConversationStateTest.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\WebConversationStateTest.cs">
|
||||
<Link>Conversation\WebConversationStateTest.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Entities\SPCDetailEnt.cs">
|
||||
<Link>Entities\SPCDetailEnt.cs</Link>
|
||||
@@ -140,19 +140,19 @@
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\web.config.net-2.0" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\web.config.net-2.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Entities\SPCDetailEnt.hbm.xml" />
|
||||
<EmbeddedResource Include="Entities\SPCMasterEnt.hbm.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\Spring.Web.Conversation.NHibernate32.Tests\Data\Spring\ConversationWA\WebConversationStateTest\log4net.config">
|
||||
<Link>Data\Spring\ConversationWA\WebConversationStateTest\log4net.config</Link>
|
||||
<None Include="..\Spring.Web.Conversation.NHibernate32.Tests\Data\Spring\Conversation\WebConversationStateTest\log4net.config">
|
||||
<Link>Data\Spring\Conversation\WebConversationStateTest\log4net.config</Link>
|
||||
</None>
|
||||
<None Include="app.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\Web.Config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\Web.Config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
@@ -170,7 +170,7 @@
|
||||
rd /S /Q "$(TargetDir)Data"
|
||||
xcopy "$(ProjectDir)..\Spring.Web.Conversation.NHibernate32.Tests\Data" "$(TargetDir)Data\" /y /s
|
||||
xcopy "$(ProjectDir)Data" "$(TargetDir)Data\" /y /s
|
||||
rd /S /Q "$(TargetDir)Data\Spring\ConversationWA\WebConversationStateTest\Bin"
|
||||
rd /S /Q "$(TargetDir)Data\Spring\Conversation\WebConversationStateTest\Bin"
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -99,16 +99,22 @@
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Bsn\NoDeferedErrorBsnImpl.cs">
|
||||
<Link>Bsn\NoDeferedErrorBsnImpl.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\PatialEndConvBeginBasePage.cs">
|
||||
<Link>ConversationWA\PatialEndConvBeginBasePage.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\PatialEndConvBeginBasePage.cs">
|
||||
<Link>Conversation\PatialEndConvBeginBasePage.cs</Link>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\PatialEndConvEndBasePage.cs">
|
||||
<Link>ConversationWA\PatialEndConvEndBasePage.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\PatialEndConvEndBasePage.cs">
|
||||
<Link>Conversation\PatialEndConvEndBasePage.cs</Link>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\ConversationWA\WebConversationStateTest.cs">
|
||||
<Link>ConversationWA\WebConversationStateTest.cs</Link>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\SerializeConversationTestModule.cs">
|
||||
<Link>Conversation\SerializeConversationTestModule.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\SimpleTest.cs">
|
||||
<Link>Conversation\SimpleTest.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Conversation\WebConversationStateTest.cs">
|
||||
<Link>Conversation\WebConversationStateTest.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Spring.Web.Conversation.NHibernate32.Tests\Entities\SPCDetailEnt.cs">
|
||||
<Link>Entities\SPCDetailEnt.cs</Link>
|
||||
@@ -147,20 +153,20 @@
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\web.config.net-1.1" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\web.config.net-2.0" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\services.xml.config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\web.config.net-1.1" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\web.config.net-2.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Entities\SPCDetailEnt.hbm.xml" />
|
||||
<EmbeddedResource Include="Entities\SPCMasterEnt.hbm.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\Spring.Web.Conversation.NHibernate32.Tests\Data\Spring\ConversationWA\WebConversationStateTest\log4net.config">
|
||||
<Link>Data\Spring\ConversationWA\WebConversationStateTest\log4net.config</Link>
|
||||
<None Include="..\Spring.Web.Conversation.NHibernate32.Tests\Data\Spring\Conversation\WebConversationStateTest\log4net.config">
|
||||
<Link>Data\Spring\Conversation\WebConversationStateTest\log4net.config</Link>
|
||||
</None>
|
||||
<None Include="app.config" />
|
||||
<None Include="Data\Spring\ConversationWA\WebConversationStateTest\Web.Config" />
|
||||
<None Include="Data\Spring\Conversation\WebConversationStateTest\Web.Config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
@@ -200,7 +206,7 @@
|
||||
rd /S /Q "$(TargetDir)Data"
|
||||
xcopy "$(ProjectDir)..\Spring.Web.Conversation.NHibernate32.Tests\Data" "$(TargetDir)Data\" /y /s
|
||||
xcopy "$(ProjectDir)Data" "$(TargetDir)Data\" /y /s
|
||||
rd /S /Q "$(TargetDir)Data\Spring\ConversationWA\WebConversationStateTest\Bin"
|
||||
rd /S /Q "$(TargetDir)Data\Spring\Conversation\WebConversationStateTest\Bin"
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user