Tagged Questions
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
203 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
1answer
252 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!
...
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 ...
2
votes
1answer
80 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 ...
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
2answers
183 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
1answer
403 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
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
294 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
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
254 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 ...
0
votes
2answers
130 views
Validation without ServiceLocator
I am getting back again and again to it thinking about the best way to perform validation on POCO objects that need access to some context (ISession in NH, IRepository for example).
The only option I ...