Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
3k views

When would you use the Common Service Locator?

I've been looking at the Common Service Locator as a way of abstracting my IoC container but I've been noticing that some people are strongly against this type of this. Do people recommend never ...
8
votes
1answer
2k views

Dependency Injection with Ninject, MVC 3 and using the Service Locator Pattern

Something that has been bugging me since I read an answer on another stackoverflow question (the precise one eludes me now) where a user stated something like "If you're calling the Service Locator, ...
7
votes
3answers
690 views

Dependency Injection vs Service Location

I am currently weighing up the advantages and disadvantages between DI and SL. However, I have found myself in the following catch 22 which implies that I should just use SL for everything, and only ...
5
votes
3answers
814 views

How to avoid Service Locator Anti-Pattern?

I'm trying to remove a Service Locator from an abstract base class, but I'm not sure what to replace it with. Here is a psuedo-example of what I've got: public abstract class MyController : ...
5
votes
8answers
1k views

Which pattern to use for logging? Dependency Injection or Service Locator?

Consider this scenario. I have some business logic that now and then will be required to write to a log. interface ILogger { void Log(string stuff); } interface IDependency { string ...
4
votes
2answers
435 views

Is IDependencyResolver an anti-pattern?

I am designing some architectural changes into a legacy ASP.NET application. I prototyped some classes for dependency resolution that mimic the ASP.NET MVC's IDependencyResolver. I won't post because ...
4
votes
1answer
251 views

Unity 'GetAllInstances' not returning anything

I'm using unity to manage my services on my app server but for some reason I can't get the method 'GetAllInstances' to work. The weird thing is that 'GetInstance' for the same type seems to work fine! ...
4
votes
1answer
750 views

Where is MvcServiceLocator in ASP.NET MVC 3 RC?

I'm trying to incorporate Ninject with my ASP.NET MVC 3 RC application. From the tutorials I found, I'm supposed to set the ServiceLocator via MvcServiceLocator.SetCurrent in the Global.asax ...
4
votes
2answers
305 views

How can I implement the service locator pattern in Cocoa Touch across multiple projects?

This is a problem which has been bugging me for a while now. I'm still pretty new with some of these patterns so you'll have to forgive me (and correct me) if I use any of the terms incorrectly. My ...
3
votes
2answers
279 views

Service Locator confusion

I am just writing a class implementing the ServiceLocator pattern. public class ServiceFactory : IServiceFactory { private IDictionary<Type, object> instantiatedServices; ...
3
votes
4answers
1k views

StructureMap resolve dependency through injection instead of service location

In my project I register many ISerializers implementations with the assembly scanner. FWIW this is the code that registers my ISerializers Scan(scanner => { ...
3
votes
6answers
706 views

Fear of using a Dependency Injection framework

I have been reading up on Dependency Injection frameworks. I really fell in love with the idea of separating the concerns and letting the objects do their core work - which is undoubtedly an excellent ...
2
votes
1answer
308 views

Is the Service Locator pattern any different from the Abstract Factory pattern?

At first glance, the Service Locator pattern looks the same as the Abstract Factory pattern to me. They both seem to have the same use (you query them to receive instances of abstract services), and ...
2
votes
1answer
186 views

How to use Dependency Injection and not Service Locator

I am hearing people say you should not use Service Locator for your Dependency Injection. So how exactly do you inject the dependencies without relying on a service locator? I want to try out IoC ...
2
votes
3answers
204 views

Is it wrong to call a class a FooFactory if it doesn't *always* create Foo objects?

Is it wrong to call a class a FooFactory if it doesn't always create Foo objects? For example if I have the following interface: public interface IFooFactory { Foo Create(); } and implement it ...
2
votes
1answer
434 views

The IOC “child” container / Service Locator

DISCLAIMER: I know there is debate between DI and service locator patterns. I have a question that is intended to avoid the debate. This question is for the service locator fans, who happen to think ...
2
votes
3answers
259 views

Are service locators not just global variables/state?

In order to decouple code you can have service locater's but is this not the same as global variables/state?. I know these often run off interfaces, so you pass in an interface and get a concrete ...
1
vote
1answer
90 views

EntryPointNotFoundException - Entry point was not found when loading an MVVM Light View in Expression Blend 4

I'm posting this question so I can document the solution as I found it very tricky and time consuming to solve. I'm using Laurent Bugnion's excellent MVVM Light Toolkit in a Silverlight 4 project and ...
1
vote
1answer
290 views

ASP.NET MVC 3 - Dependency Resolver Issue When Replacing the Common Service Locator

Using Microsoft Unity i register the following type: container.RegisterType(typeof(IRepository<>), typeof(NHibernateRepository<>)); In ASP.NET MVC 2 i could then do the following: var ...
1
vote
2answers
265 views

How to inject services into view/viewmodel using Ninject in MVC3?

I am using MVC3 with Ninject, Dependencies in my controller are resolved with no problem. I have few services like localization, format provider and I want them to be injected into view models or ...
1
vote
3answers
179 views

Dependency Injection - use with Data Transfer Objects (DTOs)?

Consider the code below (which has been simplified). I have a service class that returns a list of specific DTO objects that each implement their own specific interface. In the actual code these are ...
1
vote
1answer
119 views

Looking for help with implementation of Service Locator pattern

I have a small web application that I am building. Primarily to improve my unit testing ability (and also decouple my code further) I am implementing a service locator pattern to look up concrete ...
1
vote
1answer
116 views

Is it wrong to use Service Locator to provide the container instance to a Service?

I'm using a Service layer, then, I've alot of Service like: UserService ArticleService CommentService AuthorizationService Sometimes I need to use a Service from another Service. Currently, I'm ...
1
vote
1answer
63 views

Dynamically extract interfaces from silverlight modules and load modules

In some winforms / webforms applications, I wrote a module that at application start, using reflection, inspects all assemblies from BIN folder, extract all public classes and interfaces they ...
1
vote
3answers
339 views

For a simple web application, what service locator library you prefer to use?

For a simple application that use asp.net mvc 3 and .net-4, what service locator application is preferred, with performance concern in mind?
0
votes
1answer
50 views

How to Resolve Generic Class With Unity Container Resolved Generic Interface as Constructor Parameter

I can't figure out how to register a generic abstract class that has a injected generic interface with my Unity (2.0) container. Here's the interface and classes: public interface ...
0
votes
1answer
428 views

Constructor Injection and when to use a Service Locator

I'm struggling to understand parts of StructureMap's usage. In particular, in the documentation a statement is made regarding a common anti-pattern, the use of StructureMap as a Service Locator only ...
0
votes
1answer
84 views

IoC container conflict

In my current project I'm using SolrNet and OAuth.Net. Both libraries use Common Service Locator. SolrNet set as a locator provider a custom IoC container implementation. The locator provider for ...
0
votes
1answer
620 views

Using a wcf service registry / service locator from Silverlight

I have a silverlight application that needs to use multiple WCF services. The endpoints (urls) of the services cannot be hardcoded inside the silverlight application or the configuration file. They ...