diff --git a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.2008.csproj b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.2008.csproj
index 1c87dc7a..362cc93d 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.2008.csproj
+++ b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.2008.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.build b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.build
index e330833a..6ec4f73d 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.build
+++ b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.build
@@ -37,7 +37,7 @@
-
+
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.nuspec b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.nuspec
index 46cee406..8c705ac7 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.nuspec
+++ b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.nuspec
@@ -20,7 +20,7 @@
-
+
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.xml b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.xml
index c843edbc..9b65367a 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.xml
+++ b/src/Spring/Spring.Web.Conversation.NHibernate32/Spring.Web.Conversation.NHibernate32.xml
@@ -4,130 +4,6 @@
Spring.Web.Conversation.NHibernate32
-
-
- Based on
- for support of 'session-per-conversation' pattern.
-
- Hailton de Castro
-
-
-
- The logging instance.
-
-
-
-
- Initializes a new instance of the class.
- Uses default values for
-
-
-
-
- Initializes a new instance of the class.
-
- Specify the to be set on each session provided by this instance.
- Specify the flushmode to be applied on each session provided by this instance.
-
-
-
-
- Initializes a new instance of the class.
-
- An instance holding the scope configuration
-
-
-
- Sets a flag, whether this scope is in "open" state on the current logical thread.
-
-
-
-
-
- NOOP.
-
-
-
-
- Open a new session or reconect the
- in .
- Participating in an existing session registed with
- is not alowed.
-
-
-
-
-
- If there is another conversation with a with opened
- .
- If attempting to participate in an existing NHibernate
- managed by .
-
-
-
-
-
-
- Close the current view's session and unregisters
- from .
-
- The session factory that on use
- A list of conversations which the session can be closed or disconnected
-
-
- If start/resume a conversation from a
- when exists a different
- with open registered on
-
- If the holder on , is not a .
-
-
-
-
-
- Gets the flushmode to be applied on each newly created session.
-
-
- This property defaults to to ensure that modifying objects outside the boundaries
- of a transaction will not be persisted. It is recommended to not change this value but wrap any modifying operation
- within a transaction.
-
-
-
-
- Get the configured EntityInterceptor
-
-
-
-
- Id for conversation that open the Session.
-
-
-
-
- Gets a flag, whether this scope is in "open" state on the current logical thread.
-
-
-
-
- This sessionHolder creates a session for the active conversation only if it is
- needed ().
-
-
- Although a NHibernateSession defers creation of db-connections until they are really
- needed, instantiation a session is still more expensive than using LazySessionHolder.
-
-
-
-
- Initialize a new instance.
-
-
-
-
- Create a new session on demand
-
-
HttpModule for ending Conversations with Timeout exceeded.
@@ -189,13 +65,90 @@
-
+
- Implementation of conversation in the infrastructure of Spring.
- It avoid Circular Dependencies.
+ manager for Conversations.
Hailton de Castro
+
+
+ Returns the conversation if it is still alive, otherwise it returns null.
+
+
+
+
+
+
+ Ends all conversations with the timeout exceeded.
+
+
+
+
+ Close IDbConnections for that
+ use 'session-per-conversation'. It calls
+ in all conversations.
+
+
+
+
+ Release the ended conversations And removes them.
+ If the conversation supports 'session-per-conversation', also close the session.
+
+
+
+
+ Add conversation. If is null
+ it resolves to 'this'.
+
+
+
+ If already has another manager.
+
+
+
+
+ Makes the 'root conversation' of
+ the current active conversation and open/reopen the
+ if
+ the conversation supports 'session-per-conversation'. Close all
+ the connection for all session before.
+ If is true will end all
+ paused conversations.
+
+
+
+
+ Returns the active conversation if exists, otherwise returns null.
+ It depends on
+
+
+
+
+
+ If this is non-null run pattern 'session-per-conversation'.
+ Must be the same SessionFactory of the managed conversations.
+
+
+
+
+
+ Ends the "paused conversations" in call to .
+ Important: Unexpected behavior may occur if there are nested conversations,
+ as in only the current conversation and its parents
+ are started, the 'conversations children' remain paused, so these will be ended.
+ Defaul value: false.
+
+
+ When it is true, "start/resume a conversation" will cause the other to be
+ ended and cleaned up.
+
+ This is useful to avoid memory leak where there are many conversations.
+ This leak can be very considerable, as the conversation may keep a "NHibernate session"
+ that can contain many objects in its cache from the database queries.
+
+
+
Port to conversation. If the object is not found in the current
@@ -351,6 +304,391 @@
Indicates that the conversation is paused.
+
+
+ List that make validation for Circular Dependency for
+
+ Hailton de Castro
+
+
+
+ Contructor.
+
+ The that owns this .
+
+
+
+ Common Helper to be run before insert.
+
+
+
+
+
+ Common Helper to be run after insert.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This was made to stay under session scope.
+
+ Hailton de Castro
+
+
+
+ Based on
+ for support of 'session-per-conversation' pattern.
+
+ Hailton de Castro
+
+
+
+ The logging instance.
+
+
+
+
+ Initializes a new instance of the class.
+ Uses default values for
+
+
+
+
+ Initializes a new instance of the class.
+
+ Specify the to be set on each session provided by this instance.
+ Specify the flushmode to be applied on each session provided by this instance.
+
+
+
+
+ Initializes a new instance of the class.
+
+ An instance holding the scope configuration
+
+
+
+ Sets a flag, whether this scope is in "open" state on the current logical thread.
+
+
+
+
+
+ NOOP.
+
+
+
+
+ Open a new session or reconect the
+ in .
+ Participating in an existing session registed with
+ is not alowed.
+
+
+
+
+
+ If there is another conversation with a with opened
+ .
+ If attempting to participate in an existing NHibernate
+ managed by .
+
+
+
+
+
+
+ Close the current view's session and unregisters
+ from .
+
+ The session factory that on use
+ A list of conversations which the session can be closed or disconnected
+
+
+ If start/resume a conversation from a
+ when exists a different
+ with open registered on
+
+ If the holder on , is not a .
+
+
+
+
+
+ Gets the flushmode to be applied on each newly created session.
+
+
+ This property defaults to to ensure that modifying objects outside the boundaries
+ of a transaction will not be persisted. It is recommended to not change this value but wrap any modifying operation
+ within a transaction.
+
+
+
+
+ Get the configured EntityInterceptor
+
+
+
+
+ Id for conversation that open the Session.
+
+
+
+
+ Gets a flag, whether this scope is in "open" state on the current logical thread.
+
+
+
+
+ This sessionHolder creates a session for the active conversation only if it is
+ needed ().
+
+
+ Although a NHibernateSession defers creation of db-connections until they are really
+ needed, instantiation a session is still more expensive than using LazySessionHolder.
+
+
+
+
+ Initialize a new instance.
+
+
+
+
+ Create a new session on demand
+
+
+
+
+ Semaphore to synchronize writes to the dictionary.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ends all conversations and Closes all their Session.
+
+
+
+
+ Remove conversation.
+
+
+
+
+
+
+
+
+
+
+ "SessionFactory" name in the current context.
+ This approach is required to support serialization.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns the current context. Supports serialization and deserialization.
+
+
+
+
+ Implementation of conversation in the infrastructure of Spring.
+ It avoid Circular Dependencies.
+
+ Hailton de Castro
+
Default message for "CONVERSATION ALREADY HAS A PARENT" error.
@@ -560,344 +898,6 @@
Returns the current context. Supports serialization and deserialization.
-
-
- This was made to stay under session scope.
-
- Hailton de Castro
-
-
-
- manager for Conversations.
-
- Hailton de Castro
-
-
-
- Returns the conversation if it is still alive, otherwise it returns null.
-
-
-
-
-
-
- Ends all conversations with the timeout exceeded.
-
-
-
-
- Close IDbConnections for that
- use 'session-per-conversation'. It calls
- in all conversations.
-
-
-
-
- Release the ended conversations And removes them.
- If the conversation supports 'session-per-conversation', also close the session.
-
-
-
-
- Add conversation. If is null
- it resolves to 'this'.
-
-
-
- If already has another manager.
-
-
-
-
- Makes the 'root conversation' of
- the current active conversation and open/reopen the
- if
- the conversation supports 'session-per-conversation'. Close all
- the connection for all session before.
- If is true will end all
- paused conversations.
-
-
-
-
- Returns the active conversation if exists, otherwise returns null.
- It depends on
-
-
-
-
-
- If this is non-null run pattern 'session-per-conversation'.
- Must be the same SessionFactory of the managed conversations.
-
-
-
-
-
- Ends the "paused conversations" in call to .
- Important: Unexpected behavior may occur if there are nested conversations,
- as in only the current conversation and its parents
- are started, the 'conversations children' remain paused, so these will be ended.
- Defaul value: false.
-
-
- When it is true, "start/resume a conversation" will cause the other to be
- ended and cleaned up.
-
- This is useful to avoid memory leak where there are many conversations.
- This leak can be very considerable, as the conversation may keep a "NHibernate session"
- that can contain many objects in its cache from the database queries.
-
-
-
-
-
- Semaphore to synchronize writes to the dictionary.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Ends all conversations and Closes all their Session.
-
-
-
-
- Remove conversation.
-
-
-
-
-
-
-
-
-
-
- "SessionFactory" name in the current context.
- This approach is required to support serialization.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Returns the current context. Supports serialization and deserialization.
-
-
-
-
- List that make validation for Circular Dependency for
-
- Hailton de Castro
-
-
-
- Contructor.
-
- The that owns this .
-
-
-
- Common Helper to be run before insert.
-
-
-
-
-
- Common Helper to be run after insert.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Setting for
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.2008.csproj b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.2008.csproj
index 12e0e544..ccfbfd68 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.2008.csproj
+++ b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.2008.csproj
@@ -64,14 +64,14 @@
Conversation\IConversationState.cs
-
- Conversation\Imple\InnerConversationList.cs
+
+ Conversation\Impl\InnerConversationList.cs
-
- Conversation\Imple\WebConversationManager.cs
+
+ Conversation\Impl\WebConversationManager.cs
-
- Conversation\Imple\WebConversationSpringState.cs
+
+ Conversation\Impl\WebConversationSpringState.cs
Data\NHibernate\Support\SessionPerConversationScope.cs
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.XML b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.XML
index 44a52300..cab74383 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.XML
+++ b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.XML
@@ -4,130 +4,6 @@
Spring.Web.Conversation.NHibernate33
-
-
- Based on
- for support of 'session-per-conversation' pattern.
-
- Hailton de Castro
-
-
-
- The logging instance.
-
-
-
-
- Initializes a new instance of the class.
- Uses default values for
-
-
-
-
- Initializes a new instance of the class.
-
- Specify the to be set on each session provided by this instance.
- Specify the flushmode to be applied on each session provided by this instance.
-
-
-
-
- Initializes a new instance of the class.
-
- An instance holding the scope configuration
-
-
-
- Sets a flag, whether this scope is in "open" state on the current logical thread.
-
-
-
-
-
- NOOP.
-
-
-
-
- Open a new session or reconect the
- in .
- Participating in an existing session registed with
- is not alowed.
-
-
-
-
-
- If there is another conversation with a with opened
- .
- If attempting to participate in an existing NHibernate
- managed by .
-
-
-
-
-
-
- Close the current view's session and unregisters
- from .
-
- The session factory that on use
- A list of conversations which the session can be closed or disconnected
-
-
- If start/resume a conversation from a
- when exists a different
- with open registered on
-
- If the holder on , is not a .
-
-
-
-
-
- Gets the flushmode to be applied on each newly created session.
-
-
- This property defaults to to ensure that modifying objects outside the boundaries
- of a transaction will not be persisted. It is recommended to not change this value but wrap any modifying operation
- within a transaction.
-
-
-
-
- Get the configured EntityInterceptor
-
-
-
-
- Id for conversation that open the Session.
-
-
-
-
- Gets a flag, whether this scope is in "open" state on the current logical thread.
-
-
-
-
- This sessionHolder creates a session for the active conversation only if it is
- needed ().
-
-
- Although a NHibernateSession defers creation of db-connections until they are really
- needed, instantiation a session is still more expensive than using LazySessionHolder.
-
-
-
-
- Initialize a new instance.
-
-
-
-
- Create a new session on demand
-
-
HttpModule for ending Conversations with Timeout exceeded.
@@ -189,13 +65,90 @@
-
+
- Implementation of conversation in the infrastructure of Spring.
- It avoid Circular Dependencies.
+ manager for Conversations.
Hailton de Castro
+
+
+ Returns the conversation if it is still alive, otherwise it returns null.
+
+
+
+
+
+
+ Ends all conversations with the timeout exceeded.
+
+
+
+
+ Close IDbConnections for that
+ use 'session-per-conversation'. It calls
+ in all conversations.
+
+
+
+
+ Release the ended conversations And removes them.
+ If the conversation supports 'session-per-conversation', also close the session.
+
+
+
+
+ Add conversation. If is null
+ it resolves to 'this'.
+
+
+
+ If already has another manager.
+
+
+
+
+ Makes the 'root conversation' of
+ the current active conversation and open/reopen the
+ if
+ the conversation supports 'session-per-conversation'. Close all
+ the connection for all session before.
+ If is true will end all
+ paused conversations.
+
+
+
+
+ Returns the active conversation if exists, otherwise returns null.
+ It depends on
+
+
+
+
+
+ If this is non-null run pattern 'session-per-conversation'.
+ Must be the same SessionFactory of the managed conversations.
+
+
+
+
+
+ Ends the "paused conversations" in call to .
+ Important: Unexpected behavior may occur if there are nested conversations,
+ as in only the current conversation and its parents
+ are started, the 'conversations children' remain paused, so these will be ended.
+ Defaul value: false.
+
+
+ When it is true, "start/resume a conversation" will cause the other to be
+ ended and cleaned up.
+
+ This is useful to avoid memory leak where there are many conversations.
+ This leak can be very considerable, as the conversation may keep a "NHibernate session"
+ that can contain many objects in its cache from the database queries.
+
+
+
Port to conversation. If the object is not found in the current
@@ -351,6 +304,391 @@
Indicates that the conversation is paused.
+
+
+ List that make validation for Circular Dependency for
+
+ Hailton de Castro
+
+
+
+ Contructor.
+
+ The that owns this .
+
+
+
+ Common Helper to be run before insert.
+
+
+
+
+
+ Common Helper to be run after insert.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This was made to stay under session scope.
+
+ Hailton de Castro
+
+
+
+ Based on
+ for support of 'session-per-conversation' pattern.
+
+ Hailton de Castro
+
+
+
+ The logging instance.
+
+
+
+
+ Initializes a new instance of the class.
+ Uses default values for
+
+
+
+
+ Initializes a new instance of the class.
+
+ Specify the to be set on each session provided by this instance.
+ Specify the flushmode to be applied on each session provided by this instance.
+
+
+
+
+ Initializes a new instance of the class.
+
+ An instance holding the scope configuration
+
+
+
+ Sets a flag, whether this scope is in "open" state on the current logical thread.
+
+
+
+
+
+ NOOP.
+
+
+
+
+ Open a new session or reconect the
+ in .
+ Participating in an existing session registed with
+ is not alowed.
+
+
+
+
+
+ If there is another conversation with a with opened
+ .
+ If attempting to participate in an existing NHibernate
+ managed by .
+
+
+
+
+
+
+ Close the current view's session and unregisters
+ from .
+
+ The session factory that on use
+ A list of conversations which the session can be closed or disconnected
+
+
+ If start/resume a conversation from a
+ when exists a different
+ with open registered on
+
+ If the holder on , is not a .
+
+
+
+
+
+ Gets the flushmode to be applied on each newly created session.
+
+
+ This property defaults to to ensure that modifying objects outside the boundaries
+ of a transaction will not be persisted. It is recommended to not change this value but wrap any modifying operation
+ within a transaction.
+
+
+
+
+ Get the configured EntityInterceptor
+
+
+
+
+ Id for conversation that open the Session.
+
+
+
+
+ Gets a flag, whether this scope is in "open" state on the current logical thread.
+
+
+
+
+ This sessionHolder creates a session for the active conversation only if it is
+ needed ().
+
+
+ Although a NHibernateSession defers creation of db-connections until they are really
+ needed, instantiation a session is still more expensive than using LazySessionHolder.
+
+
+
+
+ Initialize a new instance.
+
+
+
+
+ Create a new session on demand
+
+
+
+
+ Semaphore to synchronize writes to the dictionary.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ends all conversations and Closes all their Session.
+
+
+
+
+ Remove conversation.
+
+
+
+
+
+
+
+
+
+
+ "SessionFactory" name in the current context.
+ This approach is required to support serialization.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns the current context. Supports serialization and deserialization.
+
+
+
+
+ Implementation of conversation in the infrastructure of Spring.
+ It avoid Circular Dependencies.
+
+ Hailton de Castro
+
Default message for "CONVERSATION ALREADY HAS A PARENT" error.
@@ -560,344 +898,6 @@
Returns the current context. Supports serialization and deserialization.
-
-
- This was made to stay under session scope.
-
- Hailton de Castro
-
-
-
- manager for Conversations.
-
- Hailton de Castro
-
-
-
- Returns the conversation if it is still alive, otherwise it returns null.
-
-
-
-
-
-
- Ends all conversations with the timeout exceeded.
-
-
-
-
- Close IDbConnections for that
- use 'session-per-conversation'. It calls
- in all conversations.
-
-
-
-
- Release the ended conversations And removes them.
- If the conversation supports 'session-per-conversation', also close the session.
-
-
-
-
- Add conversation. If is null
- it resolves to 'this'.
-
-
-
- If already has another manager.
-
-
-
-
- Makes the 'root conversation' of
- the current active conversation and open/reopen the
- if
- the conversation supports 'session-per-conversation'. Close all
- the connection for all session before.
- If is true will end all
- paused conversations.
-
-
-
-
- Returns the active conversation if exists, otherwise returns null.
- It depends on
-
-
-
-
-
- If this is non-null run pattern 'session-per-conversation'.
- Must be the same SessionFactory of the managed conversations.
-
-
-
-
-
- Ends the "paused conversations" in call to .
- Important: Unexpected behavior may occur if there are nested conversations,
- as in only the current conversation and its parents
- are started, the 'conversations children' remain paused, so these will be ended.
- Defaul value: false.
-
-
- When it is true, "start/resume a conversation" will cause the other to be
- ended and cleaned up.
-
- This is useful to avoid memory leak where there are many conversations.
- This leak can be very considerable, as the conversation may keep a "NHibernate session"
- that can contain many objects in its cache from the database queries.
-
-
-
-
-
- Semaphore to synchronize writes to the dictionary.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Ends all conversations and Closes all their Session.
-
-
-
-
- Remove conversation.
-
-
-
-
-
-
-
-
-
-
- "SessionFactory" name in the current context.
- This approach is required to support serialization.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Returns the current context. Supports serialization and deserialization.
-
-
-
-
- List that make validation for Circular Dependency for
-
- Hailton de Castro
-
-
-
- Contructor.
-
- The that owns this .
-
-
-
- Common Helper to be run before insert.
-
-
-
-
-
- Common Helper to be run after insert.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Setting for
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.build b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.build
index 01449078..ed14dc3e 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.build
+++ b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.build
@@ -39,7 +39,7 @@
-
+
diff --git a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.nuspec b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.nuspec
index 1fbbbc4e..ce018338 100644
--- a/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.nuspec
+++ b/src/Spring/Spring.Web.Conversation.NHibernate33/Spring.Web.Conversation.NHibernate33.nuspec
@@ -20,7 +20,7 @@
-
+
diff --git a/test/Spring/Spring.Web.Conversation.NHibernate32.Tests/Data/Spring/ConversationWA/WebConversationStateTest/web.config.net-2.0 b/test/Spring/Spring.Web.Conversation.NHibernate32.Tests/Data/Spring/ConversationWA/WebConversationStateTest/web.config.net-2.0
index 24a2af99..53340b86 100644
--- a/test/Spring/Spring.Web.Conversation.NHibernate32.Tests/Data/Spring/ConversationWA/WebConversationStateTest/web.config.net-2.0
+++ b/test/Spring/Spring.Web.Conversation.NHibernate32.Tests/Data/Spring/ConversationWA/WebConversationStateTest/web.config.net-2.0
@@ -48,9 +48,9 @@
-
+
-
+
@@ -63,9 +63,9 @@
-
+
-
+
diff --git a/test/Spring/Spring.Web.Conversation.NHibernate33.Tests/Data/Spring/ConversationWA/WebConversationStateTest/services.xml.config b/test/Spring/Spring.Web.Conversation.NHibernate33.Tests/Data/Spring/ConversationWA/WebConversationStateTest/services.xml.config
index 8817ee27..c2dc1c6b 100644
--- a/test/Spring/Spring.Web.Conversation.NHibernate33.Tests/Data/Spring/ConversationWA/WebConversationStateTest/services.xml.config
+++ b/test/Spring/Spring.Web.Conversation.NHibernate33.Tests/Data/Spring/ConversationWA/WebConversationStateTest/services.xml.config
@@ -99,7 +99,7 @@
@@ -208,7 +208,7 @@
-
+
@@ -344,7 +344,7 @@
-