0
votes
1answer
22 views
Castle Windsor auto registration
I currently have the following registration set up
private static void AddFrameworkComponentsTo(IWindsorContainer container)
{
container.AddComponent<ITypeConverter, TypeCo …
0
votes
1answer
31 views
Multi tenancy with Windsor
Hi everybody!
I need to implement multi-tenancy and i like the way it is solved here.
The problem implementing this scenario (in my project) is that the following code snippet
…
0
votes
1answer
49 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 sim …
1
vote
2answers
47 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 cont …
1
vote
1answer
23 views
Castle Windsor ResolveAll that throws when any of registered services cannot be resolved
It seems that current behaviour of Castle Windsor (2.0) method
container.ResolveAll(Type type)
is to ignore all services that cannot be resolved due to missing dependencies. Wh …
0
votes
1answer
18 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 …
1
vote
1answer
42 views
Could not find schema information for the element ‘castle’.
Hello!
I'm creating a Custom tag in my web.config. I first wrote the following entry under the configSections section.
<section name="castle"
type="Castle.Windsor. …
1
vote
1answer
46 views
Inject AutoMapper
I have been working on injecting AutoMapper into controllers. I like the implementation of Code Camp Server. It creates a wrapper around AutoMapper's IMappingEngine. The dependency …
0
votes
2answers
54 views
How to get instance of service in Windsor Castle
Hi everybody!
In a multilayer application (ASP MVC: UI project, DAL project) i registered in web.config the components.
Now i have this problem: Unit of Work pattern has do be i …
0
votes
2answers
46 views
Linq to SQL DataContext Windsor IoC memory leak problem
I have an ASP.NET MVC app that creates a Linq2SQL datacontext on a per-web-request basis using Castler Windsor IoC.
For some reason that I do not fully understand, every time a ne …
1
vote
1answer
53 views
Castle Windsor: auto-register types that have dependency in constructor
Most of the examples I see for Castle Windsor auto-register type that derive from some IFoo. However, I often have simple components (services) that just required IFoo in the const …
1
vote
2answers
40 views
Project Windsor - Repository Extending DataContext
Before I begin I will say this: I have to extend DataContext in my repository because I'm calling stored procedures and ExecuteMethodCall is only available internally. Many people …
0
votes
3answers
34 views
Authorization and Windsor
I'm trying to implement my custom authorize attribute like:
public class MyCustomAuth : AuthorizeAttribute
{
private readonly IUserService _userService;
public MyCustomA …
1
vote
1answer
34 views
How to create multiple components of a service with c’tor dependencies
I'd like to create several similar services which can be destinguished and accessed by their names (=keys).
For the service implementation I want to use classes with c'tor depende …
0
votes
1answer
64 views
Resolving a Generic with a Generic parameter in Castle Windsor
I am trying to register a type like IRequestHandler1[GenericTestRequest1[T]] which will be implemented by GenericTestRequestHandler`1[T] but I am currently getting an error from Wi …
