0
votes
3answers
26 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
21 views
How can I override a component registered in Castle Windsor?
I'm just starting with Windsor, so please be gentle :) I have a scenario where I want to be able to override/replace components placed inside a windsor container. Read on ...
In m …
1
vote
1answer
20 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 …
1
vote
0answers
19 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 …
0
votes
1answer
42 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 …
0
votes
1answer
37 views
logging in log4net to different appenders based on circumstances
Hi there,
I am using log4net and in one class require logging to a RollingFile appender, but then in another class, I wish to log to the event log + rolling file + console appende …
0
votes
1answer
28 views
Constructor on type: “Namespace.type” not found.
Hello,
I am using Castle.Windsor as an IOC.
So I am trying to resolve a service type in the constructor of an HTTPHandler. I keep receiving this error. My configuration has the f …
1
vote
1answer
16 views
Castle Windsor Interceptor for private/protected method
Hi all,
Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
0
votes
1answer
29 views
Container Resolve based on criteria
I'm trying to implement the Strategy pattern while using Windsor container. Here is what I have:
public class OrderProcessor {
...
public OrderProcessor(ITaxStrategy strategy …
0
votes
1answer
11 views
Use Enum as Parameter in Windsor Configuration File
Hi guys, how would I preset a Windsor configuration file parameter with an Enum specified entry such as "EntryType" below?
I currently have this:
<component
id="test.ser …
1
vote
2answers
29 views
castle nh facility - 2 databases / 2 models / 2 factories
Hi
I have asked this on the castle list as i'm using the nh facility but it just dawned on me to ask it here too :)
sorry for the cross posting.
I'm using the nh facility to con …
0
votes
2answers
45 views
Why is Castle Windsor trying to resolve my ‘Content’ and ‘Scripts’ folder as a controller??
I have created an ASP.NET MVC application and am trying to use Castle Windsor as my IOC
However, when the controllers are trying to resolve I am getting 'Content' and 'Scripts' in …
1
vote
1answer
27 views
How can I use Windsor to inject a dependency into an ASP.NET MVC model?
I have a a model class that needs access to my repository class (used for DB access).
I have created an interface for my repository and have successfully configured Castle Windsor …
0
votes
1answer
36 views
How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?
I'm developing a set of services using WCF. The application is doing dependency injection with Castle Windsor. I've added an IErrorHandler implementation that is added to services …
0
votes
2answers
43 views
Castle Windsor lifecycle
Currently, I'm trying to use the WindsorContainer as a mean to get rid of Singletons in my program. After some testing, I realised, that I need a way to keep the WindsorContainer t …
