2
votes
3answers
103 views
How do I pass in the repository to an authorize attribute in ASP.NET MVC
I am castle Windsor and it works great for controller constructors in passing in the repository that is being used.
private IStoryRepository Repository;
public StoryController(IStoryRepository …
1
vote
1answer
367 views
Removing or overwriting a component from Windsor Container
I'm trying to accomplish a seemingly super simple thing: from my unit test I want to replace the type being resolved with a mock/fake object.
For example: the xml config states that a component of …
1
vote
1answer
37 views
Can I use Moq with subsonic3?
Hi,
I'd like to use a mocking framework as well as an IOC framework with my latest project, based on subsonic 3 (ActiveRecord) and ASP.NET MVC.
I'd like to use Moq for mocking and Castle-Windsor for …
0
votes
1answer
28 views
No component for supporting the service after upgrading to NHibernate 2.1
Up until recently I had a working service using NHibernate 2.0. I have upgraded to 2.1, but now try to instantiate the ItemManager:
IItemManager manager = …
0
votes
1answer
17 views
How to specify the namespace only once when using Castle.Windsor?
In the Castle.Windsor demo the configuration file contains
<component
id="form.component"
type="GettingStartedPart1.Form1, GettingStartedPart1" />
Why the namespace GettingStartedPart1 is …
1
vote
1answer
88 views
Castle - Using Factory Method and Transient Lifestyle
I have the following code in my application start method along with
the code to setup the container and factory support. The factory
method seems to only be called once instead of every time the …
1
vote
3answers
209 views
Why use the key parameter when calling AddComponent on WindsorContainer?
The AddComponent method on the IWindsorContainer interface has several overloads, for example:
WindsorContainer.AddComponent<I,T>()
and
WindsorContainer.AddComponent<I,T>(string key)
…
0
votes
1answer
32 views
Why does Castle Windsor constructor crash on Windows Server 2003 with a manifest?
As part of getting our application ready for Windows7, we recently added a manifest to our our user interface's exe.
It runs ok on Windows7. However, now when I try to run the signed exe on Windows …
0
votes
2answers
31 views
Windsor Resolving generic service SubTypes
interface IFoo<T> { }
interface IBar { }
class BarImpl : IBar { }
class FooImplA : IFoo<IBar> { }
class FooImplB : IFoo<BarImpl> { }
container.Register(
…
9
votes
7answers
1k views
Castle Windsor Are There Any Downsides?
I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are …
1
vote
2answers
66 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 …
1
vote
1answer
85 views
How to register a uri dependency to return HttpContext.Current.Request.Url using Castle Windsor?
I'm new to Castle Windsor, so go easy!!
I am developing an MVC web app and one of my controllers has a dependency on knowing the current request Url.
So in my Application_Start I initialise a …
0
votes
1answer
53 views
Parameter unexpectedly initialized when invoked from unit test
I have a unit test invoking a constructor, passing in a "null" on purpose to test the handling of the null.
I expect the method invoked to throw an ArgumentNullException, but when I step through the …
1
vote
1answer
49 views
Castle Windsor: How to register internal implementations
This registration works when all the implementations of IService are public:
AllTypes
.Of<IService>()
.FromAssembly(GetType().Assembly)
.WithService.FirstInterface()
For example:
…
0
votes
1answer
39 views
Castle Windsor: UsingFactoryMethod can’t instantiate with a weird error
When I use this registration:
container.Register(
Component
.For<IFooFactory>()
.ImplementedBy<FooFactory>(),
Component
.For<IFoo>()
…
