The Unity Application Block (Unity) is a lightweight, extensible dependency injection container for .NET with support for interception.

learn more… | top users | synonyms

0
votes
0answers
9 views

Object reference not set to an instance of an object, Unity Dependency Resolver

My IUserService is null, not sure what's going on. This is my AccountController: private readonly ICustomMembershipProvider _membershipProvider; public AccountController(ICustomMembershipProvider ...
4
votes
0answers
38 views

Generics with contravariant type parameters and Unity container

I have an interface with contravariant type parameter, say IFoo: interface IFoo<in T> {} Now I have three classes: class B {} class D : B {} class Foo : IFoo<B> {} If I register ...
0
votes
0answers
66 views

Issues with custom Google Chrome *.desktop file

I've got some issues with a custom *.desktop file for Google's Crome Browser for the Unity Quicklist. I've added some additional shortcuts for example for YouTube. The problem is that if no Chrome ...
0
votes
0answers
6 views

probing with ASP.NET and reflection and unity

I'm facing a unique problem. I have following site structure MainSite Bin Sub feature bin. It can be seen that the Bin folder specific to the sub features are present under the sub features ...
0
votes
2answers
19 views

Register abstract class and resolve derived class with Unity

I have the following code public abstract class A { public abstract string MethodA(); } public class B : A { public override string MethodA() { return "Class B method"; } } ...
1
vote
2answers
35 views

WPF Prism - Send an object in navigatoin

I'm writing a WPF/MVVM application using Prism/Unity. I'm having issues on how to transfer data from one usercontrol to another when navigating a region. I have a region This is populated by a ...
1
vote
1answer
29 views

Problems integrating NServiceBus with ServiceStack IRequiresRequestContext

I am looking to integrate NServiceBus into an existing ServiceStack web host. ServiceStack is currently using the built in Funq IoC container. NServiceBus has been configured (elsewhere in the system) ...
0
votes
0answers
27 views

asp.net mvc 4 IDependencyResolver with Unity

I am new to MVC 4 world (just started yesterday) and I am looking DI with unity. I am using IDependencyResolver to get/resolve dependencies. If I use this implementation everything is OK Public ...
0
votes
1answer
60 views

Why is the controller's parameterless constructor called and not the one with the biggest number of parameters

I have had a website asp.net MVC solution My controller had 2 constructors: one parameterless and one with few parameter. The code used to go through the ctor with the parameters, injection them ...
1
vote
2answers
47 views

All references in list point to 'this'

Running c# .NET 3.5 code in Unity is producing a really weird issue class X { static List<X> _l = new List<X>(); public X() { _l.Add(this); ...
3
votes
1answer
75 views

custom membership provider and unity dependency injection

I have found a few questions similar to the one I'm posting but I'm not getting from them what I really need. I'm still struggling to implement my CustomMembershipProvider using Microsoft Unity DI. ...
1
vote
1answer
25 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
1answer
21 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
35 views

Error when using unity 3 and entity framework 5 in mvc 4 project

I have a MVC 4 solution where I'm trying to use Unity but on BootStrapper.cs when calling var container = BuildUnityContainer(); It just gives me an error: Could not load file or assembly ...
0
votes
1answer
28 views

How can I make Unity resolve a type to a property of another type?

Imagine I have the following classes: class A { public B B { get; set; } } class B { } I also have a Unity container with A registered as a singleton: container = new UnityContainer(); ...
1
vote
1answer
35 views

DependencyInjection with a Cache and a Repository that both implement the same interface

So I've encountered a minor conundrum while using Dependency Injection today (using Unity) - I have both a repository and a cache that is backed by that repository. Here is a very basic ...
0
votes
1answer
46 views

Handle exceptions during WCF service instance creation

I am using Unity.Wcf to inject dependencies in the service class and it work fine. But if I configure my dependencies incorrectly an exception is thrown by unity that it cannot build up my service ...
0
votes
0answers
37 views

c# unity divide configuration into multiple files

is it possible in unity IoC to divide configuration file into multiple ones? I mean in the basic file I would just somehow include the other configuration files, just to keep code clean a little. Is ...
0
votes
0answers
30 views

How to use Unity to build composite asp.net mvc 4 application?

I need to build an asp.net mvc 4 web application which can be extended by plugins. These plugins could be build by different development teams. These teams do not have access to the sourcecode of the ...
1
vote
0answers
45 views

Unity WebApi container is created every time

i am creating a simple web service using web api MVC 4, i am using Unity web api as my IOC, how ever in the documentation it said to add it to the application_start protected void Application_Start() ...
0
votes
0answers
28 views

C# Unity mixing [dependency] and xml parameter injection

I'm little bit stucked about one concept in Unity IoC, I'm trying to find out what's wrong and I'd like to make sure, such a concept is able to work using this technology. public interface ITest { } ...
1
vote
1answer
21 views

RegisterType results in an error

Hi I am trying to set up a testing project in order to pratis a bit of Unit Testing while using Unity IoC container and Moq. I seem to be getting an error when I try to register a type in Unity.This ...
0
votes
1answer
16 views

Can't get same instance by using RegisterInstance

I want register ShellModel with container, so I can resolve it in ViewModel whcich in another module, then I can change the window style in the ViewModel. But I can't get the same instance of ...
1
vote
1answer
69 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
41 views

WPF Prism MVVM - Same “Partial View with Command” in one page, how to subscribe the Command?

My project using MVVM design pattern using Prism and Unity, basically following the famous Prism video by Brian Lagunas, but the video didn't mention how to create/use partial view, User Control used ...
1
vote
1answer
31 views

PRISM/Unity IDisposable

I have some modules that need to do some tidy up work when they are closing, however it would appear that PRISM/Unity does not respect the IDisposable interface. Does anyone have any suggestions on ...
1
vote
0answers
15 views

Getting RhinoServiceBus to play nicely with PRISM/Unity

I just spent the last 48 hours trying to make the above happen and while I think Rhino Service Bus is fabulously useful their documentation leaves a lot to be desired. Having solved the problem I was ...
0
votes
1answer
27 views

C# windowsforms and unity ioc

I would like an advice concerning architectural decision of c#, windows forms and unity IoC framework. Is it a good idea to keep forms within unity context? Or should just service layer and below ...
0
votes
1answer
38 views

Hot to register already constructed instance in unity?

I'm try to construct HttpClient before register it in unity, but it fails at runtime with error message says HttpMessageHandler not accessible. HttpClient client = new HttpClient(); ...
0
votes
1answer
17 views

How to categorize containers in Unity configuration file

Is it possible to apply a category attribute to a container tag so that I can later use it to only retrieve certain containers? I am looking to do something like this in my config file: ...
1
vote
1answer
37 views

How do I inject an HTTP-Request-specific object into my Unity supplied object?

For example, I store the "current user" in Session. The business-layer object are being instantiated by Unity. How do I make the business-layer object aware of the "current user"?
0
votes
0answers
48 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
1answer
65 views

Error with Unity Framework in .NET WPF

I am getting following error while compiling my project. I am using unity framework for dependency injection with unity framework version 3.0.0.0 with visual studio 4.5. As far as I understand its ...
0
votes
1answer
33 views

How do I implement the logic to navigate once the service result is returned

In a bootstrapper, I have two views. Using the IRegionManager, I navigate between the first and the second view. The first view contains a search box. The user types a string, clicks search. The ...
0
votes
1answer
53 views

Automapper Random Errors

2 months ago I have asked about this problem! and the problem still exists. I am not going to copy/paste the same problem here because I found out that the error is not for a specific Entity-DTO ...
0
votes
2answers
72 views

How to prevent Unity overwriting existing mappings with AutoRegistration

Unity 3 offers new capabilities for AutoRegistration (Registration by Convention) such as: container.RegisterTypes( AllClasses.FromLoadedAssemblies(), //uses reflection ...
0
votes
0answers
53 views

how to implement unity in mvc 4 BusinessLogic layer

i have posted a question regarding MVC 4 internet site with 3rd party WCF services Architecture (need instructions with WCF and MVC 4 desgin) and the first answer suggested to try Unity. so this led ...
0
votes
2answers
227 views

An error occurred creating the configuration section handler

I have a dot.NET 4.0 web application with a custom section defined: <configuration> <configSections> <section name="registrations" ...
2
votes
1answer
88 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
0answers
49 views

How do I Add injection to constructor of an extensible controller in MVC4

Using Unity with MVC4 I'm able to target extension controllers just fine. And I'm also able to inject to the constructor of a local controller while still having all the extensible controllers ...
0
votes
2answers
83 views

Unity activation error occured while trying to get instance of type

I am using Prism 4 with Unity Extensions and the MVVM pattern. public class Bootstrapper : UnityBootstrapper { protected override void InitializeShell() { Application.Current.RootVisual ...
1
vote
1answer
57 views

Resolving multiple implementations with property injection of optional dependencies

Today i came across a seemingly strange issue regarding resolving multiple implementations of a type in combination with property injection of a optional dependency, in my case a logger instance. I ...
2
votes
1answer
59 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
66 views

WCF Catch faults returned if input has empty node for required property

I've created a WCF service that uses Unity/Unity.WCF/Unity.Interceptors for fault handling. Now, If I do a SOAP request and do NOT include a required node in the request - the service method executes ...
0
votes
1answer
36 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 ...
0
votes
1answer
49 views

Unity, per request lifetime

I'm wondering how I do the following with Unity.... I've got a simple bit of code where an object is created "per request", in most cases I use an injection factory to build the ILogger instance (per ...
0
votes
1answer
34 views

Microsoft Unity base class interception

I have an application that has a base class and derived classes from it with each implementation class having it's own interface. I would like to use Unity's interception for exception handling on ...
0
votes
0answers
358 views

ASP.Net MVC 4 Web API controller dosn't work with Unity.WebApi

My ASP.Net MVC 4 Web API controller dosn't work with Unity.WebApi. In the same project simple controllers works with Unity.Mvc3 properly. But when I run Web API controller derived from ApiController ...
0
votes
1answer
27 views

Use dependency injection with specific instance - MS Unity

I'm writing MVVM application which based on PRISM. I learning PRISM in those days and I have a technical question about UnityContainer. Is there any way to inject specific instance while I using ...
0
votes
1answer
52 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 2 3 4 5 32