Changes to transaction handling due to recent merge

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10872 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gary Spencer
2008-09-09 18:22:58 +00:00
parent 1936d6e5e3
commit 3a548a4564
2 changed files with 7 additions and 5 deletions

View File

@@ -166,7 +166,7 @@ public class AlfrescoCifsAuthenticator extends CifsAuthenticatorBase
{ {
// Start a transaction // Start a transaction
tx = getTransactionService().getUserTransaction( true); tx = getTransactionService().getUserTransaction( false);
tx.begin(); tx.begin();
// Perform local MD4 password check // Perform local MD4 password check
@@ -177,7 +177,7 @@ public class AlfrescoCifsAuthenticator extends CifsAuthenticatorBase
{ {
// Start a transaction // Start a transaction
tx = getTransactionService().getUserTransaction( true); tx = getTransactionService().getUserTransaction( false);
tx.begin(); tx.begin();
// Perform passthru authentication password check // Perform passthru authentication password check

View File

@@ -290,8 +290,10 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
String mecListMIC = null; String mecListMIC = null;
StringBuilder mic = new StringBuilder(); StringBuilder mic = new StringBuilder();
mic.append("cifs/");
mic.append( config.getServerName().toLowerCase()); mic.append( config.getServerName().toLowerCase());
mic.append("$@"); mic.append("@");
mic.append( m_krbRealm); mic.append( m_krbRealm);
mecListMIC = mic.toString(); mecListMIC = mic.toString();
@@ -559,7 +561,7 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
{ {
// Start a transaction // Start a transaction
tx = getTransactionService().getUserTransaction( true); tx = getTransactionService().getUserTransaction( false);
tx.begin(); tx.begin();
// Process the hashed password session setup // Process the hashed password session setup
@@ -716,7 +718,7 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
// Start a transaction // Start a transaction
tx = getTransactionService().getUserTransaction( true); tx = getTransactionService().getUserTransaction( false);
tx.begin(); tx.begin();
// Process the security blob // Process the security blob