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 ...
6
votes
1answer
2k views

How do I use Common Service Locator in Ninject 2

Changes in Ninject 2 say that Ninject support Common Service Locator, but how do I use it? I don't find any manual or sample.
5
votes
1answer
546 views

Is the Common Service Locator widely used?

I'm working on a new project now, and have given some thought to the IoC setup. I'm aware that you shouldn't be depending on the service location pattern (much, anyway), but that there are just a few ...
3
votes
2answers
343 views

IoC from start to finish

I'm quite sure that IoC is the way to go for my application. There are a ton of articles and even questions here on SO that discuss the different containers. I've read several blogs today with ...
2
votes
1answer
116 views

Autofac to Common Service Locator (TypedParameter issue)

how do i modify the following from Autofac to use the Common Service Locator (where _context is of type IComponentContext): var query = ...
2
votes
1answer
117 views

Is it a good practise to use CommonServiceLocator to inject dependencies into base class?

Currently when I need to inject dependencies into base class, I use the following code: public class BaseClass { readonly IService _service; public BaseClass(IService service) { ...
2
votes
1answer
168 views

What's the difference between GetService and GetInstance in CSL

I'm coding against Common Service Locator and I'm having trouble figuring out the semantic differences between GetInstance, GetAllInstances, and GetService (GetAllInstances is pretty obvious, but both ...
2
votes
1answer
733 views

Ninject how to access kernel to create instances?

I am new to ninject using ninject 2.0. My application is hosted in asp.net mvc. Now i don't know how to access kernel created in my class library. I think i should create kernel in global.aspx and ...
1
vote
1answer
128 views

Common Service Locator and implementations of IDependencyResolver

I'm building a library for conversational natural language processing. In many ways it acts much like MVC3 in that it has Controllers and Action Methods. It also uses dependency injection in much ...
1
vote
2answers
119 views

Does the Common Service Locator support Mono .NET?

Does the Common Service Locator, used for "providing an abstraction over IoC containers and service locators", support Mono .NET?
1
vote
1answer
54 views

How can I define generic exports without relying on the IOC libraries?

I am working on a library which needs to make use of the common service locator (http://commonservicelocator.codeplex.com/) to provide generic IOC support in order that we don't conflict with any ...
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
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
1answer
639 views

System.NullReferenceException with WhoCanHelpMe Unit Test

I'm working with a test project based on WhoCanHelpMe, which is based on Sharp Architecture, NHibernateValidator, etc. As its written the when_the_profile_tasks_is_asked_to_create_a_profile unit test ...