Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
368 views

MVC 3 versus MVC Turbine

I have implemented my own inversion of control methodology in MVC 2. I was thinking of reviewing MVC Turbine and possibly switch to that. However, I noticed today that MVC 3 Preview 1 has been ...
3
votes
1answer
441 views

Where to call RouteDebugger.RewriteRoutesForTesting() when route registration is injected?

As Phil Haack explains on his blog entry, the Route Debugger helps visualizing your routing tables. My site however gets it's routing injected by the MVCTurbine dependency injection (using Unity) like ...
2
votes
1answer
143 views

What is MVC Turbine

where we can use MVC Turbine?how can we implement this with ASP.NET MVC?
2
votes
3answers
769 views

Built with optimizations enabled or without debug information

I'm currently trying to find out why my InjectableAttributes never get to the filter part. Therefor I linked in the source project directly so I could easily put breakpoints etc. When I build however ...
1
vote
1answer
109 views

Turbine syntax highlighting

I'm trying to get Turbine CSS syntax highlighting (for the cssp files) in netbeans but i've been not able to find any highlighter or way to do it. Do you have any idea of how to do it?
1
vote
0answers
42 views

where to relase and dispose in MVCTurbine?

We are new to MVCTurbine, and are looking to convert existing StructureMap/NHibernate installations. In particular, we have used the Application_EndRequest() method to tell StructureMap to dispose ...
1
vote
2answers
86 views

InjectableFilterAttribute never hits the Filter

On my base controller I have placed the Logger attribute. This LoggerAttribute looks like this: public class LoggerAttribute: InjectableFilterAttribute { public override Type FilterType { ...
1
vote
2answers
154 views

Inject into attribute?

I have a [Logger] attribute for my asp.net-mvc projects. This LoggerAttribute takes a ILoggerService in it's constructor. For regular objects (e.g. my controllers) it works, but attributes don't seem ...
1
vote
1answer
205 views

Lifetime management in mvc turbine?

How can I manage the lifetime of my services in mvc turbine (using Unity)? I have an ISearchService implementation LuceneSearchService that takes an IConfigurationService and ILoggerService. ...
1
vote
2answers
2k views

Parameterized controller constructor never gets hit

With my pet project I'm trying to learn to use Turbine as a DI container. I'm registering unity as locatorprovider as such: static MvcApplication() { ServiceLocatorManager.SetLocatorProvider(() ...
1
vote
4answers
212 views

Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements?

In my pet project I want to have a user system with the following requirements: It needs to work with Db4o as a persistance model I want to use DI (by means of Turbine) to deliver the needed ...
0
votes
0answers
40 views

ASP.NET MVC 1: “No parameterless constructor”-error after moving to VS2010 (using MVCTurbines)

Our current project is written in ASP.NET MVC 1 using mvc-turbines (and unity) for IOC/DI. When I try to start the application from 2008 everything works fine, but from 2010 I keep getting the "No ...
0
votes
3answers
103 views

Web application request filter

I am using Turbine 2.3.2 with Hibernate 3. My problem is that the Hibernate session is not active when my (Velocity 1.6.4) template is executed, and I am accessing data from the database for which ...
0
votes
1answer
186 views

Where to set the ModelMetadataprovider with DI when using MVC Turbine?

To use your own ModelMetadataProvider you normally set it in the global.asax. I'm using MVC Turbine and I need to inject a dependency into my ModelMetadataProvider as well. Something like this: ...
0
votes
1answer
77 views

what is the replacement for Application_Start in MVCTurbine?

Apparently, this method no longer gets called... In there we have code for configuring AutoMapper, and for setting model binders. I know there is a "new" way to do model binders, but... shouldn't I ...
0
votes
2answers
366 views

How can I test blades in MVC Turbine with Rhino Mocks?

I'm trying to set up blade unit tests in an MVC Turbine-derived site. The problem is that I can't seem to mock the IServiceLocator interface without hitting the following exception: ...
0
votes
1answer
53 views

Could not resolve serviceType [controller name]

When trying to refactor an existing asp.net-mvc application to use Turbine as an IoC I get the following result: MvcTurbine.ComponentModel.ServiceResolutionException Could not resolve serviceType ...
0
votes
2answers
179 views

Why does my http response body suddenly contain a load of gibberish?

I'm trying to refactor an existing asp.net-mvc web application and introduce mvc-turbine. The application works as is, but I want to make it more pluggable and maintainable so future maintenance will ...
0
votes
4answers
522 views

Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception

In my asp.net-mvc application I'm trying to set up Turbine. The initialization code goes as follows: public class MvcApplication : TurbineApplication { static MvcApplication() { ...
0
votes
1answer
50 views

How do I prevent Turbine from writing to my console?

That's the question. I'm trying to write some unit tests against it and want to disable its logging so I can more easily find my test output. I tried turning off everything I could think of with the ...