Tagged Questions

0
votes
1answer
19 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
11 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
15 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
70 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 …
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
29 views

Windsor Resolving generic service SubTypes

interface IFoo<T> { } interface IBar { } class BarImpl : IBar { } class FooImplA : IFoo<IBar> { } class FooImplB : IFoo<BarImpl> { } container.Register( …
1
vote
2answers
51 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
45 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: …
1
vote
1answer
82 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
33 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>() …
0
votes
1answer
52 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 …
0
votes
1answer
25 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
vote
1answer
32 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 …
1
vote
1answer
54 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
1answer
29 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 …

1 2 3 4 5 17 next
15 30 50 per page