Tagged Questions
1
vote
1answer
88 views
servicestack with funq - autowiring by convention
I have a service which takes an IMyDependency in its constructor. IMyDependency, MyDependency and the service all live in the same assembly. MyDependency has a single, public, parameterless ...
1
vote
2answers
103 views
ServiceStack Access Ioc container within Custom CredentialsAuthProvider
I've extended the CredentialsAuthProvider provided by service-stack to allow me to authenticate against a Active-Directory instance. The AD access logic is encapsulated within a custom class called ...
2
votes
1answer
99 views
ServiceStack Funq MVC html helper extension
I'm trying to create a MVC html helper extension that have to be declared as a static class, something like this:
public static class PhotoExtension
{
public static IPhotoService PhotoService { ...
1
vote
1answer
76 views
Registering same concrete class with RegisterAutoWired and RegisterAutoWiredAs
My question is quite simple. I have to register all implementations by their interface and concrete types.
container.RegisterAutoWiredAs<AuthenticationManager, IAuthenticationManager>();
...
2
votes
1answer
142 views
Funq and disposing of child container
we are using Funq in our windows service to execute some scheduled tasks, and for each round we are creating a child container than create all our objects and on the end disposing child container, we ...
3
votes
1answer
103 views
NUnit + ServiceStack's Funq AutoWire issue
I've been testing my business logic in ServiceStack 3.9.38 project, and faced a problem when running unit tests separatly leads to success, and running tests all together leads to fail of one of them. ...
1
vote
1answer
85 views
Funq scope in ServiceStack (Best Practice)
In my Web application I use a standard mechanism for resolving dependencies into a AppHost.cs
public virtual void Configure(Container container){ }
In this method, I register all dependencies.
...
1
vote
2answers
73 views
Accessing IHttpRequest or IRequestContext from container
I need to have the resolution of a dependency for my services to be based off the value of an HTTP header in the incoming request.
I've tried registering a factory method like so:
...
7
votes
2answers
306 views
How to use ServiceStack Funq in my own projects
At work we're doing several new web services projects in ServiceStack and taking advantage of Funq in some of them. I'm currently working on a separate project that will consume said web services and ...
1
vote
1answer
112 views
Property not being set in constructor by Container
I have a Service created with ServiceStack. I am using Funq for my Dependency Injection as it comes with ServiceStack by default, but this may be behaviour exhibited by other DI containers.
I ...
2
votes
1answer
238 views
ServiceStack - Dependency seem's to not be Injected?
I have the following repository class:
public class Repository<T> : IDisposable where T : new()
{
public IDbConnectionFactory DbFactory { get; set; } //Injected by IOC
IDbConnection db;
...
1
vote
1answer
290 views
How can I resolve ILog using ServiceStack and Funq.Container
The ServiceStack AppHost provides a Funq.Container with which to register types that can be injected into Services as they are constructed. Can this container be used to register an ILog factory that ...
3
votes
1answer
124 views
ServiceStack Funq Container WeakReference proliferation
I recently wrote a small service that handles high amounts of throughput (on the order of 60+ million requests per day) and it is encountering memory issues. At first, I looked through all of the ...
1
vote
1answer
195 views
ServiceStack/Funq cannot resolve System.Boolean exception
I've setup a ServiceStack api using the built-in Funq IoC container to resolve my repositories. However, when I call an api method, I get the following exception:
Required dependency of type ...
1
vote
1answer
103 views
Funq passing existing objects as parameters
I only know how to Register and Resolve new instances. However, I am not sure how to pass existing objects as parameters in to an instance I want to resolve.
Q1:
interface IPerson {
person ...
2
votes
1answer
337 views
Constructor Injection with ServiceStack MVC Powerpack + Funq
I'm playing with the demo MVC 3 Internet Application template and I installed the ServiceStack.Host.Mvc NuGet package. I'm having issues with Funq performing constructor injection.
The following ...
3
votes
5answers
344 views
How can I resolve circular dependencies in Funq IoC?
I have two classes which I need to reference each other.
class Foo
{
public Foo(IBar bar) {}
}
class Bar
{
public Bar(IFoo foo) {}
}
When I do:
container.RegisterAutoWiredAs<Foo, ...
2
votes
4answers
636 views
using RavenDB with ServiceStack
I read this post by Phillip Haydon about how to use NHibernate/RavenDB with ServiceStack.
I don't see the point about getting the IDocumentStore and open new session every time i need something from ...
3
votes
1answer
1k views
Funq usage in ServiceStack
So simple question
How can I access Container instance out of controller?
I have to use Container.Resolve in my class but how can I access Container instance?
Is it singleton? Can I use new ...
7
votes
2answers
2k views
How to register multiple IDbConnectionFactory instances using Funq in ServiceStack.net
How would you go about registering diferent IDbConnectionFactory instances in Funq and then access them directly within your services? Do named instances somehow come into play here?
Is this the ...
