Inversion of control (IoC) is an abstract principle describing an aspect of some software architecture designs in which the flow of control of a system is inverted in comparison to procedural programming.

learn more… | top users | synonyms (1)

1
vote
1answer
13 views

IoC and Unity, where do I call the method that registers the types

I try to learn and use the IoC together with Unity in web services but I can't figure out how to or what should call the method that calls all the registerType methods. In pseudo code I will try to ...
0
votes
0answers
16 views

Exception Debugging using Unity IOC

I'm having issues getting good Exception information when using Microsoft.Practices.Unity to load some classes dynamically. The code is on a remote server and I'm using ELMAh to capture errors. I ...
0
votes
0answers
11 views

Stubbing an external service in another process

I have an acceptance test suite that tests a WebAPI application, which in turn calls a third-party service. I want replace this service in test services with a stubbed version, which will have return ...
0
votes
4answers
68 views

How to create object more than once with dependency injection

I'm using C#.Net, but any relevant example is very much acceptable. I have 2 winforms, let's say ListFrm and DetailFrm, in which everytime user click on a button in DetailFrm, a new ListFrm will ...
0
votes
1answer
17 views

Need some help reusing an existing (java-based) IoC container for my project

I'm working on the development of library that depends heavily on XML based configuration files. These files describe a process workflow that contains variables and references to java objects that ...
1
vote
1answer
30 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 ...
0
votes
1answer
44 views

Castle Windsor IoC doesn't inject log4net into my controller

I'm working out this(http://docs.castleproject.org/Windsor.Windsor-Tutorial-Part-Five-Adding-logging-support.ashx) IoC tutorial in Castle Windsor, I have passed all of the previous steps and as in ...
1
vote
1answer
49 views

Ninject Property Injection Setup Issue [closed]

This question relates to an answer to a question I asked earlier (IoC setup and issue with inherited class). I've tried setting up property injection to overcome my issue in my other question however ...
0
votes
1answer
48 views

IoC setup and issue with inherited class

I'm fairly new to the IoC pattern and I've hit an issue on the way the following should be setup. I've got a Service class which has the following constructor: public ...
0
votes
0answers
46 views

a function or property returning type and specify that that type derives from some particular interface

I want to register an interface and want the class to be registered to come from a property or function code: ...
1
vote
1answer
48 views

ASP.Net MVC 3 session management when using IOC pattern

I am trying to use the IOC pattern and could not find the perfect way of implementing the state management using the same. Would be great if someone can help me with the same. Thank you.
0
votes
1answer
38 views

Instantiating arbitrary classes thru Spring

I'm writing a service registry class. This service registry will scan packages for annotated classes and then populate some internal map. What I need then, is to be able to query for services (by ...
1
vote
1answer
56 views

Injecting DbContext into Repository class library

The projects in my solution are set up like this: App.Data App.Models App.Web In App.Data, I'm using Entity Framework to access my data with a bunch of Repositories to abstract interaction with ...
0
votes
1answer
28 views

Managed Extensibility Framework (MEF), why are Imports needed?

I wonder what the use of Import/ImportMany decorations are good for? I played with MEF and manage everything through the CompositionContainer. I decorated the exports with a custom MetaDataAttribute ...
0
votes
2answers
28 views

multiple singleton beans referencing the same class

I have a java class lets say 'class1' which basically holds a ConcurrentHashMap (to be used as a cache) and some functions to update and remove the entries in the map.This class is not designed to be ...
1
vote
1answer
42 views

Can I use Inversion of Control with Android components such as Activities and Services?

To facilitate cleaner testing, I would like to use Inversion of Control when developing my Android application. It looks straightforward to do with plain Java objects, but when I want to seed my ...
0
votes
1answer
31 views

Lazy<T, TMetaData> -> Lazy<dynamic, TMetaData> without instantiating?

I use MEF and compose parts and get several IEnumerable<Lazy<IFoo, IMetaData>> (I have several imports). I like to merge all of the composed parts into one collection of type ...
0
votes
1answer
31 views

Inversion of Control, Dependency Inversion, and Service Locator difference clarification

I looked up these concepts, and I want to see if I've understood them correctly. Mainly I'm trying to distinguishing these three concepts apart. From googling and other results on here, I saw a lot of ...
0
votes
1answer
25 views

IOC , Class Factory, Open/Closed

I have a question about IOC, factories, and the Open/Closed principle. consider, if you will, the following factory public function PODocument( _type as string) as IPODocument dim d as new ...
4
votes
1answer
35 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
22 views

SimpleInjector Verification - is it possible to mark warnings as acceptable to make *new* items obvious?

The SimpleInjector verification feature from time to time has highlighted issues that I have needed to fix. I do however have a couple of "potential" issues that I am comfortable with and I would like ...
0
votes
0answers
40 views

What is the advantage of autowiring in spring

What exactly is the advantages of autowiring is Spring? An example of autowiring in spring would be like public class TestClass { testMethod() { // ..... }; } public class MainClass ...
0
votes
1answer
26 views

Importing MEF plugins into DI/IOC container

I am trying to use MEF to load plugins into a DI framework. There are multiple types such as: ISocket IBroadcastSocket INodeTask Currently I have setup my code this way: [Import] INodeTask ...
0
votes
0answers
46 views

Unity Generics - Exception on Resolve [closed]

I am fairly new to Unity and was trying things out today, when a huge problem occured. Unity throws an exception on resolving a generic interface. I did some research and found some solutions, which ...
1
vote
3answers
45 views

Property-based or contructor-based dependency injection

I just start to study Spring and i have a question : In order to inject a bean, when is it better to use property-based dependency injection : <bean id="myFirstClass" class="..."> ...
0
votes
1answer
53 views

Converting to IoC, how to handle inner objects

I've looked through a number of threads here (perhaps I'm using the wrong terminology), but I'm converting a Web Application over to use IoC via NInject. My other IoC projects were fairly small so it ...
1
vote
1answer
31 views

Autofac dependency injection implementation

I started working on a new project and I come from a direct and 'naive' programming. Right now I'm concerning about using IoC container, specifically on Dependency Injection patter using Autofac. ...
1
vote
1answer
44 views

servicestack with funq - autowiring by convention

I have a service which takes an IMyDependency in its constructor. IMyDependency, MyDependency and the service all live in the same assembly. MyDependency has a single, public, parameterless ...
2
votes
1answer
76 views

SimpleInjector VS Unity: Where's the IContainer?

I have used Unity for my last project and was generally pleased. But benchmarks have me thinking I may go with SimpleInjector for my next project. However, SimpleInjector does not seem to have an ...
0
votes
3answers
122 views

PHP Class Coupling with Global Settings

I am in need of some advice with regards to the design pattern I use for a project I am working on. Let's say I have lots of classes which will use dependency injection and IoC containers for ...
0
votes
2answers
49 views

DI Creational pattern

Been struggling with this for quite a while now, so I'm starting to think I have created an anti-pattern. Nevertheless, here goes; //Register self ...
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 ...
2
votes
1answer
55 views

Resolving named dependencies with Unity

I have a service with 2 dependencies: a Repository and a Gateway (sms). I need to resolve 2 different versions of the service that only differ on one of the parameters passed to the gateway. The ...
1
vote
1answer
65 views

Passing Constructor Arguments to a dependency of a root object as part of a single resolve in Ninject

I have the following classes (I know they are not well designed; I just want to express the Ninject problem). I don't know how to pass the constructor arguments down to my service (which is a ...
2
votes
3answers
132 views

What is the difference between using the Service Locator anti-pattern and using the Castle Windsor container?"

Recently, I have been trying to understand what is the difference between using the Service Locator "anti-pattern" and using the Castle Windsor container. I have found some info here and there on the ...
0
votes
1answer
48 views

Unity Ioc Configuration Error

Hola a todos bueno tengo el siguiente problema estoy usando IOC Unity con C# La case que impplementa IOC es las siguiente: using Microsoft.Practices.Unity; using ...
1
vote
1answer
31 views

SimpleInjector - how to register many implementations of a generic type with LifetimeScopeLifestyle?

While answering this question on SO I couldn't figure out the best technique for registering many implementations of a generic type with an instance of LifetimeScopeLifestyle within SimpleInjector. ...
3
votes
1answer
99 views

Why ORMs don't support IoC containers

This question has many parts: Is there any ORM for .NET that actually supports using an IoC container ? If no, Why not ? Wouldn't that force a person who loves domain-driven design (me included) to ...
1
vote
1answer
124 views

Using Hibernate 4's Integrator pattern and Spring's dependency injection

I'm used to using Spring to do my dependency injection like so: <context:component-scan base-package="org.emmerich.myapp" /> and then annotating my dependent classes with Autowired like so: ...
0
votes
2answers
25 views

How to connect implemtations to closing types in structuremap, when dynamically instantiating objects

I have a project which has commands and command executors classes, which take the given command and do something. I use structuremap and generics to find and create and instance of an exector for ...
0
votes
0answers
25 views

Autocreate named instances with autofac

I have XAML solution where I register viewmodels through AutoFacContainer. Now I have a use case where different data is shown using same Page and ViewModel. I'd like to resolve them by name or key to ...
0
votes
1answer
45 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 ...
0
votes
1answer
75 views

Correct (Best) way to register and retrieve Repositories in C#

The project I'm working on has a lot of boilerplate code for passing Repository objects around. The parent object creates a repository, passes it to any utility / helper methods to do some specific ...
5
votes
1answer
126 views

Multiple implementations for one interface with DI

Right now I'm trying to teach myself the Dependency Injection pattern with the IOC-container from Autofac. I've come up with a very simple example, which is presented below. Although the example is ...
1
vote
1answer
93 views

Factory class - using a IOC container to register and resolve types

I am not quite sure how to implement this, or what the best strategy is, basically I have an (MVC) controller public TestController(IService1 service1, IService2 service2,...) { } (At the moment ...
0
votes
1answer
31 views

Autowiring in case of Constructor with parameters for socket

My main code public static void main(String[] args) { System.out.println("Hello World!"); ApplicationContext applicationContext = new ClassPathXmlApplicationContext( ...
0
votes
1answer
47 views

How does dependency injection know which type of mapping to use when injecting an interface

I've been reading up on dependencey injection and I read a lot on how an interface is inejected through a constructor. How does it know what type of mapping to use for the interface? For example, if ...
1
vote
3answers
53 views

I've written myself into a corner Where to place database specific helper methods

Okay, I don't think my controller should know about sql. I want to convert incoming null values to my action to be changed to MinValue var salesFrom = Model.SalesFrom ?? SqlDateTime.MinValue; But, ...
1
vote
0answers
74 views

Exception thrown when trying to map with automapper and castle windsor injection

I get the following error Missing type map configuration or unsupported mapping. Mapping types: RegistrationViewModel -> Member Here's my models public class Member { public int ID { get; ...
0
votes
1answer
82 views

Passing parameters to resource using embedded Jetty

I have a resource I want to expose that has a constructor with parameters for injection. However I'm not using any injection framework, and I've got Jetty embedded. Right now Jetty scans for ...

1 2 3 4 5 39