1
vote
1answer
18 views
ASP.NET MVC & Windsor.Castle: working with HttpContext-dependent services
I have several dependency injection services which are dependent on stuff like HTTP context. Right now I'm configuring them as singletons the Windsor container in the Application_Start handler, which …
0
votes
1answer
12 views
Windsor Castle IoC, how to register IBaseService<TObject> to BaseService<TObject, TRepository>
I have something like this:
public interface IBaseService<TObject>
public class BaseService<TObject, TRepository> : IBaseService<TObject>
where TRepository : …
-1
votes
0answers
40 views
Database Bugs with MVC
In the MVC project that I am working on strange things are happening!
The Domain Model works great, the Views and Controllers work awesome but only when the application is run and connection to the …
1
vote
1answer
26 views
How to I make castle windsor automatically register controllers that don’t have any dependencies?
I know I can specify it in the configuration XML, but I'd like to not have to do so for every controller. For example: I have a controller without any dependencies being injected, but I'd rather not …
0
votes
1answer
16 views
String format for Castle DictionaryAdapter
I'm using Castle DictionaryAdapter in order to get the application settings from the app.config as an interface ( based on Getting rid of strings (3): take your app settings to the next level ):
…
1
vote
1answer
25 views
What’s the best way to initialize an MVC Controller with multiple parameters of the same type using Castle Windsor?
In my MVC application, I'm registering all of my controllers using reflection in the Application_Start handler. This basically creates all types that are used on any controller parameter and adds it …
0
votes
1answer
23 views
Should controller lifestyle always be transient in Windsor configuration for ASP.NET MVC?
I ran into a problem where I had an Html.DropDownList in my view that would postback the selected value the first time I submitted the form, but each subsequent postback would only post data from the …
1
vote
1answer
25 views
Castle Windsor: how to know that the container has been initialized or configured ?
Hello.
I'm using Castle Windsor with a configuration from my App.config file.
In the code I use :
IWindsorContainer container = new WindsorContainer(new XmlInterpreter());
to get the container.
…
1
vote
1answer
26 views
Register Multiple Components for Single Interface Using Castle Windsor
I am trying to register multiple NHibernate ISessions (multiple databases) by using the code below. I am getting "There is a component already registered for the given key …
1
vote
3answers
43 views
castle IOC - resolving circular references
Hi
quick question for my MVP implementation:
currently I have the code below, in which both the presenter and view are resolved via the container.
Then the presenter calls View.Init to pass himself …
0
votes
2answers
25 views
Castle Windsor IoC: How to Initialize Service and Repository Layer
Configuration:
component id="customerService" service="MyApp.ServiceLayer.ICustomerService`1[[MyApp.DataAccess.Customer, MyApp.DataAccess]], MyApp.ServiceLayer" …
0
votes
1answer
26 views
Castle Windsor auto registration
I currently have the following registration set up
private static void AddFrameworkComponentsTo(IWindsorContainer container)
{
container.AddComponent<ITypeConverter, …
0
votes
1answer
64 views
Castle Windsor: Problem with Multiple Constructors
Hello stackoverflow! Long-time reader first time writer here. I am currently undertaking a conversion from to the use of Ninject to the current release of Castle Windsor for a simple C# .NET …
1
vote
2answers
58 views
Where should I store a reference to my DI container?
I'm wondering how I should store/reference my dependency injection container(s). Is it alright to have a container be a static property on a static class? Or should I have the container be an instance …
0
votes
1answer
25 views
Trouble using IAuthorizationPolicy with WCF and Castle-Windsor
I'm currently using Castle-Windsor with the WCF Facility to inject all my WCF services. I've just started adding permission requirements using a custom IAuthorizationPolicy, which seems to work when …
