I'm building ASP.Net MVC aplication based on UnitOfWorkApplication and I'd like to use Castle ATM facility. At the moment I've problem with flushing the session on request end. My service class (which is called in my controller action method) looks like this:

[Transactional]
public class UserAdminService : IUserAdminService
{

	[Transaction(TransactionMode.Requires)]
	public User CreateNewUser(string username, string password, string firstName, string lastName)
	{
		var u = new User(username)
		        	{
		        		PasswordHash = GetPasswordHash(password),
		        		FirstName = firstName,
		        		LastName = lastName
		        	};
		userRepo.Save(u);
		//UnitOfWork.CurrentSession.Flush();
		return u;
	}

When I uncomment the "UnitOfWork.CurrentSession.Flush();" row everything works fine - new user is persisted in DB. But nothing is persisted if I don't flush the session explicitely.

The UnitOfWorkApplication + ATM should flush changes on request end AFAIK - is that right? Does anybody have an advice what should I try to make it work without the explicit session.Flush() call?

link|improve this question

I'm just thinking if I setup the ATM properly - is DefaultTransactionManager ok? I register facility AutomaticTransactionManagement.TransactionFacility and than Castle.Services.Transaction.DefaultTransactionManager as a component in my app's IoC container. – Buthrakaur Mar 26 '09 at 11:21
feedback

1 Answer

up vote 1 down vote accepted

I just registered RhinoTransactionFacility instead of original Castle ATM facility + DefaultTransactionManager and everything started to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.