Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

Rhino Commons and Rhino Mocks Reference Documents?

Ok, is it just me, or does there seem to be a lack of (easy to find) reference documentation for Rhino Commons and Rhino Mocks? My coworkers have started using Rhino Mocks and Rhino Commons ...
4
votes
2answers
2k views

Any Rhino Commons Getting Started Tutorials?

There used to be a great one at this blog: http://www.hanneyetc.co.uk/ but it is offline now.
3
votes
4answers
675 views

How do you mock UnitOfWork from Rhino.Commons?

My application is using Rhino.Commons - NHRepository and UnitOfWork. I like the With.Transaction() syntax for transactions and have been using it for some time. But I ran into a problem - how do I ...
3
votes
1answer
1k views

Rhino.Commons + Fluent NHibernate

Is there a way to use Rhino.Commons with Fluent Nhibernate, (in particular AutoMapping)? Many thanks fromano
2
votes
2answers
371 views

How to configure sandbox security in in Rhino JavaScript engine

I want to interpret html pages scripts, but want to disable any posibility of harming my computer. Is there are any official tutorial or example how to configure such feature? (i dont find it in ...
1
vote
1answer
155 views

NHIbernate & Rhino-Security does not save unless I call session.Flush()

I am having an issue using nHibernate and Rhino.Security. After struggling for hours to get the right config setup, I finally got the code to run without any errors. However, no entries are being ...
1
vote
1answer
222 views

Rhino Commons Nhibernate Module w/ Structuremap

Has anyone gotten the NH session management bits from RhinoCommons to work with Structure Map? We already use SM and do not want a dependency on Windsor.
1
vote
1answer
187 views

Rhino Security - Configure multiple users

I am using Rhino Security and everything works fine when I configure the security settings as follows: Security.Configure<User>(cfg, SecurityTableStructure.Prefix); However, this depends on ...
1
vote
1answer
779 views

Rhino UnitOfWorkApplication + Castle Automatic Transaction Management application does not flush automatically on request end

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 ...
0
votes
3answers
186 views

Auto mocking container for Windsor and Rihno

I am want to do automocking with Windsor so that I can do something like _controller = _autoMockingContainer.Create<MyControllerWithLoadsOfDepdencies>(); There used to be a Windor auto ...
0
votes
0answers
107 views

How To Setup Rhino Commons Nhibernate for a Multiple DataBase Connection?

I want to setup a multible Databases using NHibernate Rhino Commons library, i stooped at the point where Windsor is trying to initialize MultipleNHibernateUnitOfWorkFacility Facility but it cant ...
0
votes
1answer
207 views

Detaching Rhino.Commons from a project

I have a project which uses Rhino.ActiveRecord's ARRepository, unfortunatly the project is no longer maintained and both of NHibernate's and ActiveRecord's versions are very old and we really need to ...
0
votes
2answers
633 views

Multiple endpoints , NServicebus vs Rhino Bus

I am pretty new to both NServiceBus and Rhino Bus - and I am wondering if multiple endpoints will solve my problem. I want the following: 1. Have an endpoint for Invoicing messages, that runs only 1 ...
0
votes
1answer
303 views

rhino.commons unit of work

i'm trying to get multi tenancy working in my app - using nhibernate integration facility from castle and i think that the funky combination of using the nh facility combined with fluent is making the ...
0
votes
1answer
292 views

Rhino Commons UnitOfWork and ASP.NET MVC Controller seem to be caching parameters

I am using Rhino Commons UnitOfWork in my controller methods. The first request retrieves the data and displays it correctly. My problem is when I change the parameters in the URL they are not ...
0
votes
1answer
136 views

Rhino.Commons and it won't compile

I get this very strange error message when trying to use Rhino.Commons with my asp.net mvc application. Error 3 'Rhino.Commons.Repository<Web.Models.Poll>.FindAll()' is not supported by the ...
0
votes
1answer
794 views

Nesting transaction scopes for integration tests using Rhino Commons UnitOfWork

I'm trying to set up a integration test class that wraps each test in a transaction. This way I can rollback the transaction after each test instead of resetting the DB before each test. I also want ...
0
votes
1answer
406 views

Is it possible to use Rhino.Commons.HttpModules.UnitOfWorkApplication in ASP.NET 3.5 (not MVC)?

I tried to find tutorials/articles on using UnitOfWorkApplication in ASP.NET (not MVC). But all information I can find is about how to use it in ASP.NET MVC. Does it mean that it is not possible to ...
0
votes
2answers
512 views

RhinoCommons UnitOfWork Question with ASP.Net MVC

I'm playing around with RhinoCommons and NHibernate and I had a question about the UnitOfWork pattern. Sorry if this is a n00b question. Should the UnitOfWork be started at the very highest level ...