In object oriented languages, an inversion of control container (ioc-container) can be used for configuring and managing objects in an application.
0
votes
0answers
5 views
Why does Castle IoC Container store my RhinoMock stubs?
We have a test scenario in which we have a base class that news up an instance of all Injectible dependencies for each test (in the [SetUp] method). However, no matter what I do, stubs or ...
0
votes
0answers
15 views
DI container implementation differences
I've been reading up on dependency injection, and DI/IoC containers. I've looked at containers implemented in several different ways and I'm a little confused about the differences between the ...
0
votes
0answers
63 views
Castle Windsor - slow debugging
I have recently started working on an ASP.NET MVC project that uses Castle Windsor. The problem is, each time I try to debug the application, this part of code takes a couple of minutes to execute:
...
1
vote
1answer
33 views
Child containers in MvvmCross IoC
I have a WPF MVVM application that I'd like to refactor to use MvvmCross to support a WPF and Mono for Android implementations.
Currently we are using Unity 3.0 for dependency injection and rely on ...
1
vote
1answer
25 views
Ninject contextual bindinng like structuremap
Hi I am using Ninject IoC container. I can not convert the structuremap code to ninject.
This is Structuremap code binding
...
4
votes
1answer
36 views
Registering a singleton via SimpleInjector and return the same instance, for different interfaces it implements
Imagine I have the below:
public interface IocInterface1 { }
public interface IocInterface2 { }
public class IocImpl : IocInterface1, IocInterface2 { }
I would like that if I try to get any ...
0
votes
1answer
18 views
Ninject bindings order of execution
For a set of bindings like the ones below
Bind<ITestInterface>().To<WHenBarHappensTriggerTarr1>()
Bind<ITestInterface>().To<WHenBarHappensTriggerTarr2>()
...
0
votes
0answers
35 views
UnitOfWork lifespan in WPF with an IoC Container
My basic setup is a lot like this; http://visualstudiomagazine.com/articles/2011/10/01/wpf-and-inversion-of-control.aspx
An MVVM setup in WPF. I'm injecting a UnitOfWork and a RepositoryFactory into ...
1
vote
2answers
25 views
Use Ninject.InSingletonScope() for all classes in defined namespace
I have a set of repositories in a class lib that are required to be singletons.
They share library with other classes as well - classes created as singletons.
Is it possible to configure Ninject to ...
1
vote
1answer
42 views
Autofac, how to intercept the service with an instance of a Aspect but not with the Type of Aspect?
I have an Autofac as an IoC container. I want to register Aspect for the some types. I can do it like this:
...
0
votes
1answer
44 views
Dependency Injection Symfony object creation parameters
I have been looking up how symfony does it's dependency injection. But I don't understand the direct purpose of it.
It seem to refer everything as a service. A service is something along the line of ...
0
votes
1answer
36 views
Dependency injection using a container
Read a lot about dependency injection and now I'm trying to make something. I thought of a simple form submit. Basically a form with a input field for the title and a textarea for the body.
Then I ...
0
votes
0answers
10 views
Get a Controller<? super T> for some runtime T in an IoC way
I hava a Java Web Service which is provides generic Get, Post and List methods for entities ('generic' as 'universal', not generic type, at least on the service interface end).
The WS is ...
0
votes
1answer
35 views
Register Multiple implementations of the same contract : one in Chilcontainer and one in the Parent
I am trying to register multiple implementations of the same interface like this :-
**DLL A: Module.cs**
_container.RegisterType<IFoo, Foo1>("Foo1");
**DLL B: Module.cs**
var childContainer ...
1
vote
2answers
54 views
Adding service initialization method when using Castle Windsor IoC container
If my service have some initialization code, I know two options:
Implement ISupportInitialize.
Pro: Only depend on .NET native interface.
Con: I normally only use BeginInit(), so there's always ...
1
vote
2answers
32 views
Registration with Unity
I'm accustomed to using Autofac and with autofac with one line of code I can register all the interfaces in the assembly so that they resolve to whatever classes implement that interface.
In Unity ...
0
votes
1answer
44 views
IoC Conflicts within a WCF Service
We've created several WCF services that process asynchronous requests. We're using basicHttpBinding, consequently our InstanceContextMode is PerCall and this is what's causing a little confusion. ...
1
vote
0answers
76 views
Using Ninject and binding a default implementation while avoiding the dreaded Service Locator anti-pattern
Is it possible and/or a good idea to use Ninject (or any other IoC container, for that matter) to create a default binding for situations in which an appropriate implementation does not exist, and ...
0
votes
1answer
61 views
How to register types in IOC container, but in a container agnostic way?
*I have an application which uses an IOC container (Autofac, but could be any).
I also have modules which are developed externally. Each module needs to specify its own setup of the DI container, ...
0
votes
0answers
53 views
Autofac: long-lived objects requiring short-lived objects during single method calls
I have a class X that I register in Autofac as single-instance because it's rather costly to create.
X has a method DoSomething that performs some action. However, to do its task in DoSomething, X ...
0
votes
1answer
48 views
Autofac self register TypedNamedAndKeyedServices
I have a simple system that displays different screens (WPF) depending on the type of Molecule the user selects. To accomplish it I am using Caliburn.Micro together with Autofac as Ioc Container.
A ...
3
votes
1answer
63 views
SimpleInjector Verification process with IIS Express / Visual Studio
I have a proprietary event model built into my solution that has a subscription instantiation process that uses the GetAllInstances() method of SimpleInjector to locate all of the subscribers of an ...
0
votes
0answers
36 views
How to iterate over Ninject StandardKernel's configured bindings to debug?
In my Ninject binding module,
public class CarModule : NinjectModule
{
public override void Load()
{
Kernel.Bind(scanner => scanner.FromThisAssembly().SelectAllClasses()
...
0
votes
1answer
77 views
Is it possible to use Ninject Factory Extensions' ToFactory method with open generics?
I'm building on a previously answered question in which ICar implementations are bound using Ninject Conventions Extensions and a custom IBindingGenerator, and the ICarFactory interface is bound ...
0
votes
1answer
229 views
Microsoft Unity IoC does not work and ASP.NET mvc4 application. Why?
I'm trying to set up Unity IoC container to ASP.NET mvc4 application.
I created empty project and using package management console installed next products
Install-Package Unity
Install-Package ...
1
vote
1answer
58 views
Sharing MEF Parts/Exports for Reusability Between Modules
I am writing a WPF MEF application. In the past I have written WPF IoC based applications and structures modules of code using PRISM like so:
Shell - Main executable
BusinessArea.Module.Interface - ...
0
votes
1answer
106 views
Where to put libraries for the IoC Container to work in Laravel?
The IoC container is kind of a complex subject for me, and coming from a Codeigniter background (where you just could copy and paste a library and it worked by including it with include_once()), it's ...
1
vote
1answer
46 views
Unity container register object that receive container in constructor
I have a container implemented in unity 2.0 and DI.
I have a singleton factory class that i register in the container.
How can I register it if one of its constructor parameters are IContainer ?
What ...
2
votes
1answer
380 views
+100
Difference between MEF and IOC containers like(Unity,Autofac,SMap,Ninject,Windsor.Spring.net etc)
I have been trying to search about the dependency injection and read few articles.
But still i am unable to find out the difference between MEF and other IOC's.
So, my question is this, in which ...
0
votes
2answers
43 views
Does Tapestry manage all threads inside application?
Consider service, which starts some thread inside it. Will Tapestry 5 manage this thread in part of e.g. closing hibernate sessions inside such thread or not? (For example, we can pass Session object ...
0
votes
3answers
300 views
Laravel 4 IoC Container - Setting Up & Using Providers
I am trying to use http://geotools-php.org/ in Laravel 4 (L4).
I followed the instructions for downloading through Composer (and verified geotools existance in the vendors folder).
I added ...
0
votes
1answer
113 views
NullReferenceException at constructor when resolving dependency with Unity IOC for a Windows Azure cloud service
I have a Windows Azure cloud service with a web and worker role. Both roles use a Unity container in the composition root to register types (latest nuget pkgs as of this post).
All this code works ...
1
vote
1answer
40 views
instantiate the implementation class of Depenency injection using unity framework in mvc 3
I have a login controller which accept the instance of user and in login method it call the
Validate user correctly but the problem arises in UserManager if i include a constructor in a similar ...
1
vote
1answer
45 views
Reflecting the Target of Injection
A very common logging goal I find in various projects, is that any class/object which creates a log entry will record its own class/object name into that entry. If the log entry is for an exception ...
8
votes
3answers
128 views
What is the use of an IoC framework in an MVC application? [closed]
I'm trying to understand the use of an IoC framework like StructureMap, but i can't help thinking that these "design patterns" are just nonsense, making code just more complex.
Let me start with an ...
1
vote
1answer
39 views
How to define Spring bean with unique id (not within the file)?
I've a lot of Spring xml files and I wish that each bean must have unique id (or name doesn't matter for me) for whole Spring scope. Cal I tell Spring to throw and exception in case of non uniqueness ...
3
votes
3answers
198 views
Javascript IoC / DI frameworks [closed]
For strongly typed static languages like Java, IoC / DI frameworks / toolkits are invaluable to decouple the complex systems thus make the sub-components unit testable and their composition fluently.
...
0
votes
1answer
57 views
Which IoC containers work with Windows Store apps?
Which IoC containers can be used in Windows Store App projects?
0
votes
0answers
40 views
IOC/Dependency Injection and Publish Subscribe pattern
Im having a general problem by properly instantiating a publisher inside a container.
The main problem is that i need to know all the subscribers before I instantiate the publisher, otherwise the ...
2
votes
1answer
87 views
Autofac: Custom LifetimeScope
I'm building a multi-tenant MVC 4 application and using Autofac as the container.
I've been looking at the Autofac MultiTenant library, however unless I have missed something I don't think it really ...
2
votes
1answer
181 views
Simple Injector - Where Is the ability to RegisterAll with Registration Contexts (aka Func<T>)?
I can register a single registration item with instanceCreator context (aka Func<T>), but there doesn't seem to be the same allowance with a RegisterAll.
TL;DR - Find the accepted answer and ...
0
votes
1answer
93 views
Castle Windsor IoC “cost”
Where is the performance cost of using Castle Windsor for dependency resolution? Is it on new WindsorContainer(), or on container.Resolve<T>()?
Based on the answer to this, should an ASP.NET ...
1
vote
2answers
130 views
How do I bind generic types with inheritance using Ninject Conventions extensions
How can I bind InitializerForXXX (non-generic implementation) to IInitializer<XXX> (generic interface) using Ninject Conventions so that requests for an IInitializer<T> resolve a ...
2
votes
1answer
70 views
Can I make StructureMap manage the lifecycle of a concrete type?
I have a type called TypeA.
TypeA implements 2 interfaces: IOne and ITwo
public class TypeA : IOne, ITwo
{
public TypeA(IThree ithree)
{
...
}
}
I want to configure ...
0
votes
1answer
332 views
Laravel 4 target interface is not instantiable
This is related to this question How to register a namespace in laravel 4 but I believe I got that worked out and namespaces are working now.
There is a new problem I've run into. I believe the ...
0
votes
0answers
42 views
Static IOC Container in class lib
I would like to make a DAL library for multiple asp projects including sharepoint apps , basically that lib requires an IOC container to set up right repository based on model...
I would like to use ...
0
votes
0answers
156 views
“Cleanup” ViewModels in MVVM Light
I was looking for some suggestions where to create the ViewModels using MVVM Light and I found this question (and answer) which actually makes sense.
Should each view model be handled by a single ...
0
votes
0answers
43 views
Wicket + Spring Primary not behaving as expected
First off, I'm using I'm using Spring 3.0 together with Wicket-spring(Wicket 1.5).
I'm experiencing some strange behaviour when attempting to implement several beans of the same interface...
The ...
0
votes
1answer
54 views
Dependency injection in XIB with Objection
I'm trying to change dynamically my xib File owner using the dependancy injection framework "Objection". If you don't know Objection just understand that I just want to change dynamically my xib File ...
3
votes
4answers
121 views
How to use different implementations in different places with IoC container
I'm wondering in how to use different implementations of one interface in different clients. Here is example situation.
public interface IRandomIntGenerator
{
int Generate();
}
public class ...



