The service locator pattern is a design pattern used in software development to encapsulate the processes involved in obtaining a service with a strong abstraction layer. This pattern uses a central registry known as the "service locator" which on request returns the information necessary to perform ...
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";
}
}
...
0
votes
1answer
51 views
Reducing service config duplication with a custom service locator?
My app uses the data mapper pattern, so I have a number of mapper classes, which each needs an instance of the database adapter. So the factories section of my service config is filled with entries ...
0
votes
1answer
31 views
IS there any difference between Service Locator Pattern and Dependency Injection Pattern?
Is there any difference between Service Locator
Pattern and Dependency Injection Pattern ?
2
votes
3answers
155 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
0answers
39 views
Activation exception on ServiceLocator
I'm trying to set up a MVVM application using PRISM.
This is how i set my DataContext
public MainWindow()
{
InitializeComponent();
this.Loaded += OnLoaded;
}
private ...
0
votes
1answer
64 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
1answer
19 views
Javascript and service locator and including js files
I made a service locator class to access different service classes in my javascript application, but i'm not sure how effective a service locator is in javascript, because of the include files i have ...
5
votes
2answers
103 views
Stuck on generics and interfaces. Need solution based on code, maybe redesign of interfaces
This is part of my code which I need help with:
// simple service locator
public class ServiceManager<TSvc> : IServiceManager<TSvc> where TSvc: class, IService
{
private ...
2
votes
2answers
225 views
ZF2 ServiceLocatorAwareInterface getServiceLocator gives me the Zend\Validator\ValidatorPluginManager
For my ZF2 form validation I need the entity manager in my custom validator. I Zend\ServiceManager\ServiceLocatorAwareInterface to get the service locator in my validator so I would be able to get the ...
0
votes
0answers
19 views
Location Service Sip Servlet
I'm trying to do a platform of communication (with voice, video and text) using Mobicents JBoss server. I found this example of Location Service but I couldn't change the hard coding address SIP to ...
0
votes
0answers
33 views
Difference between Service locator and dependency-injection [duplicate]
I read about Service locator and DI i think both of them is same but my question is what is the exactly Difference between Service locator and dependency-injection?
0
votes
1answer
30 views
Questions about implementation of service locator
I need your help, I know that the service locator is not one of the best options, but taking into account the implementation of it.
The most correct would be to have a Locator class in each layer, ...
0
votes
1answer
146 views
ZF2 ServiceManager Factory Object Instance stored or Lazy Loaded?
I am working on a large project where the DB has many tables which are accessed in different modules for different reasons. So came up with the idea of using the Service Manager to point to Factory ...
4
votes
2answers
100 views
Implementing a Service Locator with injected variations of Generic Type
I have the following:
public interface IConverter<TValue, TConverted>
{
}
public interface IConverterProvider
{
IConverter<TValue, TConverted> GetConverter<TValue, ...
0
votes
0answers
446 views
Getting objectManager / serviceLocator in fieldset in ZF2
In order to get my object manager inside my fieldset's init() function I followed the docs
At first I found out that I had to change
public function setServiceLocator(ServiceLocator $sl)
to
public ...
0
votes
1answer
199 views
PRISM Part Creation Policy NonShared/Shared with MEF
I have set PartCreationPolicy.NonShared for my view, but for some specific users I can use the CreationPolicy.Shared (For performance improvement), I am not sure if it can be done or not. as I am ...
1
vote
1answer
361 views
asp.net mvc 4 dependency resolver for controllers
I'm using asp.net mvc 4 to develop a multi-tenant mvc application.
I am using Autofac for the IOC container and have configured controllers to be registered for each client in different assemblies.
...
1
vote
3answers
927 views
ZF2 when to use getServiceLocator() and when not to
I am really confused on when to use getServiceLocator and when not to.
As an example:
+ Module
-+ Helloworld
--+ src
---+ Controller
----+ IndexController.php
----+ IndexControllerFactory.php
---+ ...
6
votes
2answers
146 views
How is the intention of IServiceLocator.GetInstance(Type) different from the intention of IServiceProvider.GetService(Type)?
Is there a difference in intentions of the method signatures IServiceProvider.GetService(Type serviceType) and IServiceLocator.GetInstance(Type serviceType)? If so, what is the distinction?
I've ...
0
votes
0answers
116 views
Dynamic IOC MVC ViewEngine
I'm trying to load a particular view engine in a multi-tenant environment where each tenant has their down view engine (as instance of PreCompiledViewEngine).
I'm using Autofac and its multi-tenant ...
0
votes
1answer
54 views
use service locator for form or add the dependency and create an object?
i am just getting my hands on zend framework 2. I have created a user form and to use that form in my controller i can either include the from class in my controller and create and object using new or ...
2
votes
3answers
102 views
Dependency injection or service location?
I'm trying to learn dependency injection, and there are many subtleties to it I'm yet to grasp. One of the books that I've started reading for that purpose is "Foundations of Programming" by Karl ...
1
vote
1answer
292 views
PHPStorm, Silex DI indices code completion
I'm trying PHPStorm and have trouble with its code completion. I write project with Silex framework and faced PHPStorm's lack of code completion for Silex dependency injection container. For example, ...
2
votes
1answer
112 views
Dynamic Service Locator In JavaScript?
I'm trying to get a dynamic service locator written in JavaScript using Harmony Proxies (Node.js). Basically you would create a new container:
var container = new Container();
You would then be ...
1
vote
2answers
86 views
Variation on Service Locator
IModificationRequst<Employee> req = new ModificationRequst();
Locator.Instance.GetService<IModificationRequstHandler<Employee>>().Handle(req);
I have a service locator that locates ...
1
vote
1answer
375 views
Domain Driven Design in a Workflow-enabled MVC Application - Design Decision
I'm building an N-Tier MVC 4 Application that implements the Repository and UnitOfWork patterns as well as Domain Driven Design using an abstracted CommandProcessor layer that validates and executes ...
0
votes
1answer
63 views
Calling generic method gives compiler error
I want to decouple some things in my code so that I don't have to include DLLs that are used in the main project also in the sub-project. For this i have created the following method to register ...
0
votes
1answer
283 views
Silverlight Prism MEF: why use ServiceLocator to get View instance?
In Prism's IModule Initialize() method, the RegisterViewWithRegion() method is called to map views and regions.
What is the difference between those two lines of code? Why use a ServiceLocator?
...
2
votes
0answers
107 views
Questions & thoughts on IoC, composition root, servicelocator, factories
From time to time I've been searching for a good way to use an IoC container properly, that is:
Using the container strictly at the composition root.
Not using a common ServiceLocator (or similar) ...
0
votes
2answers
225 views
Silex - real DI vs injecting $app which looks like ServiceLocator?
I read the article yesterday: https://igor.io/2012/11/09/scaling-silex.html
And another one http://davedevelopment.co.uk/2012/10/03/Silex-Controllers-As-Services.html
So a conceptual question rised ...
0
votes
3answers
483 views
WebAPI: Accessing Child Container as a Service Locator
In normal ASP.MVC projects we configure the dependency resolver with Unity and the Unity.Mvc3 package from http://unitymvc3.codeplex.com/
We have this test service registered with a ...
1
vote
0answers
151 views
CoffeeScript (Node.js) IoC Aliasing
This may be a tad long but I've hit a slight design barrier.
For starters I've created an IoC (inversion-of-control) containing specializing in service locator and not dependency injection. (Also ...
2
votes
1answer
537 views
How to resolve ServiceLocator.Current is null using VSTO and MEF
Using MEF in a VSTO project and defined container as follows
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new AssemblyCatalog(this.GetType().Assembly));
...
1
vote
1answer
209 views
MVC and EF Solution Structure - Should you use the Repository Pattern, Service Locator, or both?
Take the scenario where you have the following application:
An MVC 4 Web App
The application talks to an existing database via Entity Framework 5
(with no plans to change to another ORM or database ...
4
votes
1answer
289 views
When to use Dependency injection vs service locator
When will you use dependency injection? Is there any overwhelming benefit of using dependency injection?
0
votes
2answers
88 views
What is the actual difference betwen a service locatior and a dependency injection?
I was going through the previous discussion in which there was a detailed discussion on the difference between a service locator and a dependency injector, but still I am not able to get that.
Can I ...
0
votes
1answer
83 views
IoC Container accessibility
I'm wondering if the IoC Container should be referenced only by the class that instantiates and configures it, or if it can be injected into other classes, VMs and VML for example. I'm asking because ...
1
vote
1answer
151 views
Command queue bootstrap code looks like Service Locator pattern not Dependency Injection
I have a project that is using CQRS and Dependency Injection. The Query side of the system is fine.
For the command side of the system I have chosen to use a queue:
BlockingQueue<Command> ...
1
vote
2answers
252 views
IoC: Dependency Injection and overall instances between assemblies
I heared this should be possible, but I can not imagine how this should work.
I am using Dependency Injection (autofac) for my project. I develop a project with someone else and call the methods of ...
0
votes
1answer
1k views
can ServiceLocator.Current.GetInstance return null?
I have this piece of code (or similar) in many of our views:
private IEventAggregator eventAggregator;
Constructor()
{
eventAggregator = ...
3
votes
1answer
123 views
.NET IoC: Preconfiguring library components for easier use
I had a similar question a while back, but with much less of a grasp of the whole IoC/DI topic and as well as what I was aiming to achieve, so here goes again....
I am building a library for common ...
0
votes
0answers
40 views
my ejb cannot be annotated in my war project
i wanna ask, why i cannot use @EJB annotation in my Class in war project when i need that bean. For example i cannot do this :
@EJB
private UserLocal userLocal;
it will return java.lang.Nullpointer ...
1
vote
1answer
317 views
Unity Container: Register two singletones which implement two interfaces one of which is common
I can't figure out how to do following with UnityContainer.
interface A { }
interface B { }
interface X { }
class ConcreteAX : A, X { }
class ConcreteBX : B, X { }
I need to register both concrete ...
1
vote
2answers
354 views
Dependency Injection + Ambient Context + Service Locator
Recently I was reading a lot of stuff about application design patterns: about DI, SL anti-pattern, AOP and much more. The reason for this - I want to come to a design compromise: loosely coupled, ...
0
votes
1answer
189 views
Is this the correct way to avoid the ServiceLocator pattern, by using Constructor Injection?
Is this the correct way to avoid the ServiceLocator pattern, by using Constructor Injection?
public interface IEntitySomethingBase<TEntity>
{
//Stuff
}
public class AccountEntitySomething ...
1
vote
1answer
219 views
LightCore ServiceLocator with multiple registration on the same contract
We try to integrate LightCore as the default Service Locator in our Metadata- / ORM-Framework. Therefore we like to to some default Registrations from within the Framework that a Framework-User ...
1
vote
2answers
126 views
Is it sometimes okay to use service locator pattern in a domain class?
This question may be more appropriate for the Programmers stack. If so, I will move it. However I think I may get more answers here.
So far, all interface dependencies in my domain are resolved using ...
2
votes
0answers
273 views
Dependency Injection, injecting an “injectable” object (service) into a newable (entity)
When writing code we should be able to identify two big group of objects:
Injectables
Newables
http://www.loosecouplings.com/2011/01/how-to-write-testable-code-overview.html
...
0
votes
0answers
159 views
Get Exported Values from ServiceLocator by type
I am trying to get Values from the ServiceLocator (MEF) by Type.
Example: Give all Controls that are type DMControl
IEnumerable<DMControl> list = ...
0
votes
1answer
695 views
SolrNet - ServiceLocator.Current throws a null reference exception
I'm setting up my connection to Solr in the Application_Start method in the global.asax through: Startup.Init<ApartmentDoc>("http://localhost:8080/solr");
I have a DAO library project that I'm ...


