Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
341 views

Avoiding Service Locator Antipattern with legacy app not designed for IOC

I have read often that Service Locators in IOC are an anti-pattern. Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
6
votes
1answer
513 views

How to combine designable components with dependency injection

When creating a designable .NET component, you are required to provide a default constructor. From the IComponent documentation: To be a component, a class must implement the IComponent ...
5
votes
2answers
201 views

The proper way to do Dependency Injection in a Windows Client (WPF) Application

I am used to IoC/DI in web applications - mainly Ninject with MVC3. My controller is created for me, filled in with all dependencies in place, subdependencies etc. However, things are different in a ...
4
votes
1answer
107 views

MVC3, Ninject, MvcSiteMapProvider - How to inject dependency to overridden method

I have an MVC3 application that is using Ninject and MvcSiteMapProvider. I have created this class which MvcSiteMapProvider uses to dynamically add nodes to my sitemap: public class PageNodeProvider ...
4
votes
4answers
241 views

What if Dependency Injection is not possible?

After much kicking and screaming, I'm starting to accept DI despite how much cleaner SL may seem as dependencies grow. However, IMO there's still a significant show-stopper with regards to DI: DI is ...
4
votes
2answers
354 views

Static members class vs. normal c-like interface

Hey there. After reading here about the Service Locator pattern, it got me thinking wether a class with only static members really is the way to go, or if a normal c-like interace wouldn't be more ...
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
5answers
4k views

MVVM : how to pass parameter to ViewModel's constructor

I'm using L. Bugnion's MVVM Light Framework. What are some of the recommended approaches to pass parameters such as Customer's ID to ViewModel's constructor? Edit: The parameter I need for each ...
3
votes
3answers
131 views

How should I architect logging within my application?

So I've done a lot of research on this and haven't found any answers where I said, "yes, THAT". I'm hoping the ever-erudite StackOverflow crowd can help me out. I've run into this issue in a couple ...
3
votes
1answer
258 views

Java - Automatic implementation of service locator pattern using annotations

Spring almost provides what I want. In Spring you can simply annotate classes with @Component and then use "context:component-scan" to have Spring automatically search for components. Then later you ...
3
votes
1answer
792 views

.NET MVC3 Service Locator / Dependency Resolver Question With Ninject

I have what I'd consider a standard .NET MVC3 Repository pattern project that I've been playing/learning with. It's pretty standard structure. Repository project (with the below mentioned Caching ...
3
votes
2answers
359 views

Is the StaticFactory<T> in codecampserver a well known pattern?

CodeCampServer source code contains a generic StaticFactory. I'm surmising that this is a key piece of the mechanism for how the framework plays well with Dependency Injection. Subclasses of which ...
3
votes
3answers
741 views

Is it bad to use servicelocation instead of constructor injection to avoid writing loads of factory classes

Right now we use DI/IOC and when we need to pass extra parameters to a constructor we use a factory class e.g. public class EmailSender { internal EmailSender(string toEmail, string ...
3
votes
1answer
1k views

Singleton Vs ServiceLocator

What are the advantages and disadvantages of using a Service Locator versus a singleton? I've read that singletons are bad but I'm wondering if s Service Locator would be generally a better way of ...
2
votes
1answer
77 views

Why the Service Locator is a Anti-Pattern in the following example?

I have an MVC application with a Domain Model well defined, with entities, repositories and a service layer. To avoid create service classes inside my controllers, and thus, mess my controllers with ...
2
votes
1answer
182 views

How to declare the Unity InjectionFactory in XML configuration

I'm in the process of moving our Unity configuration to the web.config file. I'm stuck on how to migrate the following code config to the xml format: var container = new UnityContainer(); ...
2
votes
1answer
157 views

How to use a Service Locator in a WCF service

I'm using a service locator to hold concrete instances of classes, which is used in a WCF service. Rather than passing the ServiceLocator around I decided to make it static so I could access it from ...
2
votes
1answer
330 views

GWT ServiceLocator with multi-module maven project

I've a multi-module GWT project and I'd like to use ServiceLocators. I have 3 modules: "client" depends on shared "shared" "server" depends on shared I wrote the ServiceLocator like this: public ...
2
votes
2answers
304 views

HtmlHelper building a dropdownlist, using ServiceLocator : code smell?

Is it a code smell to have to following pattern, given the following code (highly simplified to get straight to the point) ? The models : class Product { public int Id { get; set; } public ...
2
votes
3answers
778 views

J2EE/EJB + service locator: is it safe to cache EJB Home lookup result?

In a J2EE application, we are using EJB2 in weblogic. To avoid losing time building the initial context and looking up EJB Home interface, I'm considering the Service Locator Pattern. But after a ...
2
votes
2answers
178 views

Who is using P&P Common Service Locator?

Who is using it? Is there any OS framework that relies on it?
1
vote
1answer
27 views

IOC (simpleServiceLocator) setup testing with Specflow and WatiN

I have some acceptance tests using Specflow and WatiN but am not sure where to setup up my registrations for my IOC container (SimpleServiceLocator). In my web site, the registration is done my ...
1
vote
1answer
23 views

Service Resolution/Location and Parameters

How would you pass parameters to a resolver to create an object? I have a UoW object which I want to pass into a data service objects, I want to be able to ensure that the data service objects ...
1
vote
1answer
134 views

Dealing with how MongoDB stores DateTime when used with Service Locator Pattern

My colleague and I are at an impasse in a debate and other's input would be greatly appreciated. We utilize the Service Locator Pattern and a common interface to abstract all of our data access so we ...
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
115 views

Regarding Service Locator Pattern

Service Locator seems like a pretty useful concept and I'd like to implement it in my app. However, I have a few questions about how it should be implemented and how it should be used in conjunction ...
1
vote
1answer
143 views

Where do the Locator methods go when using a ServiceLocator?

If I use separate service classes with a ServiceLocator, do I still need to define the Locator methods somewhere?: T create(Class<? extends T> clazz) I getId(T domainObject) T find(Class<? ...
1
vote
1answer
235 views

Service locator free architecture with Ninject WCF Extenstion

I finally got some understanding of how Ninject handles DI, but have faced the following problem: Let's consider we have a class that takes two WCF ServiceHost objects as a constructor parameters: ...
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
2answers
182 views

pass parameter to IServiceLocator

I have a ViewModel class which I want to resolve via the unity ServiceLocator, but my viewModel requires a parameter to the constructor. The parameter's type is one of the entities in my application ...
1
vote
3answers
206 views

Relevant tests for The Service Locator Pattern In C#

I've used this Service Locator Pattern in my Application and implemented as a Singleton: Service Locator Pattern And now I want test it .So far I've written a test verifying that my class is a ...
1
vote
1answer
402 views

ASP.NET MVC 3 RTM way of ServiceLocator

I'm a little confused with IServiceLocator, IMvcServiceLocator, IDependencyResolver, etc... What is the ASP.NET MVC 3 RTM way of locating services? All I need is to access something like T ...
1
vote
3answers
593 views

@EJB injection vs lookup - performance issue

I have a question related with possible performance issue while using @EJB annotation. Imagine following scenario public class MyBean1 implements MyBean1Remote{ @EJB private MyBean2Remote myBean2; ...
1
vote
1answer
160 views

Unity Service Locator: Is there a supplied way to test configuration is valid?

In StructureMap there is a way to test your configuration is valid calling StructureMap.ObjectFactory: Is there an equivalent for this in Unity? [Test] public void ...
1
vote
1answer
312 views

How to do IServiceLocator constructor injection via config file?

How to inject IServiceLocator to my class constructor? When I tried to do this via my config, described above I got an Exception that it could not to create a RequestHandlersFactory class because ...
1
vote
1answer
291 views

WPF DI Service Locator

So I'm looking for some clarification how it would be possible to remove the service locator from my application. I have a ViewManagerService that is responsible for knowing which view is active, ...
1
vote
1answer
142 views

Are Consumers of ServiceLocator supposed to call ServiceLocator.Current?

I'm trying to refactor my code to use the Common Service Locator. I have a Shared Library that is used by some other components. What I don't understand is: Are these components supposed to call ...
1
vote
1answer
545 views

Service locator for generics

I have say a dozen types T which inherit from EntityObject and IDataObject. I have generic the following interface IDataManager<T> where T : EntityObject, IDataObject ... I have also base ...
1
vote
1answer
1k views

Autofac, ASP.NET and Microsoft.Practices.ServiceLocation

I've been working thru the details of implementing IoC in my web apps but in a way that leverages Microsoft.Practices.ServiceLocation. I am specifically using Autofac and the asp.net integration, but ...
1
vote
1answer
706 views

Scope of View Models when using Service Locator Pattern in WPF app

When using a Service Locator class to serve up ViewModels for your WPF pages to bind to. Should the ViewModels be Singleton scoped or Factory scoped? Is one generally a better idea for WPF ...
0
votes
0answers
56 views

what's wrong with my entity class

This is my code for using entity class by using locator in GWT @SuppressWarnings("unchecked") public List<User> findAllUsers() { EntityManager em = HibernateUtil.getManager(); try ...
0
votes
0answers
42 views

Is it possible to use SharePoint Logger from MS P&P SharePoint 2010 Guidance Library when user is not authenticated?

I am working on custom authentication for SharePoint 2010. And I found very useful to use SharePoint Logger from MS P&P SharePoint 2010 Guidance Library. It works fine when I get instance of ...
0
votes
1answer
252 views

verifiying I understand the difference between IoC, Ioc Container, DI and service locator [closed]

read many posts about the difference between the 3 idioms. But got more confused, then I ran into this article: http://martinfowler.com/articles/injection.html just want to see if I got this right. ...
0
votes
1answer
285 views

Binding IDatabaseInitializer<> in my test to test my data context initialzer (EntityFramework 4.1 aka EF4 Code First)

I'm trying inject my database initializer so that I can use test data initializer in my unit test and the real one in production. Here is my ninject module. class IocBindings : NinjectModule { ...
0
votes
2answers
411 views

Using a ServiceLocator in Class LIbraries and MVC DependencyResolver

I've really gotten into the DI/IoC things - it makes some things a lot easier. However, I have a few inherited classes that implement a class with a required parameterless constructor, I thus use a ...
0
votes
1answer
310 views

SolrNet - The given key was not present in the dictionary

I'm using SolrNet with vb.net 2.0 and can't seem to instantiate solr. Dim solr As ISolrOperations(Of PMWProperty) = ServiceLocator.Current.GetInstance(Of PMWProperty)() throws the exception: ...
0
votes
1answer
134 views

How do I get the container instance back from ServiceLocation?

Is is possible to get the container instance back from ServiceLocation? I only see the ability to resolve instances of types, not register them.
0
votes
2answers
2k views

Unity ServiceLocator, register types at runtime

I have a small toolkit which uses Unity DI plus EntLib Service Locator. The problem appears when a third party apps try to use the EntLib service locator. It looks like the EntLib Service Locator is ...
0
votes
2answers
496 views

EJB call from swing

I have app on GF V3.01 server and remote methods in EJB container. When I call remote methods from my remote swing app process take long time to execute. I read about ServiceLocator , but can no find ...
0
votes
2answers
129 views

MVVM setup design time services?

Im working with the MVVM pattern + a simple ServiceLocator implementation, now to my problem how am i supposed to setup the services when the views are running in design time? Iv tryed this but it ...

1 2