Tagged Questions

9
votes
1answer
345 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 ...
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
31 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
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 ...
0
votes
1answer
256 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
2answers
412 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 ...