0
votes
0answers
76 views

WebApi and Ninject singleton scope

Im using this article to get ninject to work with Asp.Net WebApi http://www.strathweb.com/2012/05/using-ninject-with-the-latest-asp-net-web-api-source/ This breaks all scopes, like InSingletonScope ...
0
votes
0answers
49 views

Rebinding DependencyScope, will that cause problems in my WebApi

I'm not sure how to explain this... Essentially I am finding when request.GetDependencyScope() to obtain the latest dependency instance, unless I rebind the context to this latest scope I cannot ...
0
votes
3answers
114 views

Bootstrapper with Ninject using asp.net webapi

i am trying to use Bootstrapper to do initialization for my application, ioc, automapper, configuration etc. I need some direction on how to setup the ninject correctly in asp.net webapi using ...
1
vote
0answers
115 views

How to use Ninject with WebApi?

I need to use Ninject on a Web APi app (I created it using the empty web api template). I installed the following nuget package : Ninject.Web.WebApi Ninject.MVC3 Here is my application_start ...
5
votes
1answer
356 views

Ninject WebAPI The operation cannot be completed because the DbContext has been disposed

So I am using a simple repository pattern with Attributes and Filters as recommended here since I am using the Ninject.Web.WebApi-RC package from NuGet. This works for the first request but since I ...
0
votes
1answer
247 views

WebAPI. Dependency injection with Ninject in case of inheritance

I'm pretty new to ASP.NET WebApi project, but hopefully I'll put everything straight enough. After creating couple CRUD Controllers a brilliant idea come to my mind - write generic base CRUD-web-API ...
4
votes
1answer
185 views

Ninject WebAPI.SelfHost Performance Issues under load (for a few seconds every few more seconds)

I'm throwing some load tests at my WebAPI Self Hosted application and have found that Ninject's Cache Pruning stalls the application for a few seconds (profiling under load in the screenshot). How ...
0
votes
1answer
212 views

Ninject setup for general repository using Nhibernate

I'm developing a .NET Web API application using Nhibernate and a generic repository. Now I'm trying to correctly setup dependency injection using Ninject. However, I have some problems with my current ...
3
votes
2answers
247 views

Error loading Ninject component ICache

I am using ninject in an asp.net web api project and have started receiving this intermittent ninject error: "Error loading Ninject component ICache No such component has been registered in the ...
2
votes
2answers
236 views

Inject dependency into DelegatingHandler

I am new to dependency injection, but happy with Ninject and Ninject.Extensions.Logging to [Inject] my ILogger wherever i need it. However some DelegatingHandlers are spoiling all the fun. public ...
0
votes
1answer
54 views

Entries delete from knockout ui, but not from db

I use WebApi in MVC 4 with EF, Ninject. In client i use knockout.js end it's delete my entries from UI, but it's still in DB. Add, update action works fine. Client code: self.removeUser = function ...
2
votes
1answer
103 views

How to use VS2012 to debug when an object gets disposed?

I have started coding a small ASP.NET MVC 4 project. So far there isn't a front end, however, as I started with the API my project will expose. The API is created using Web API's API controllers. The ...
0
votes
0answers
35 views

Does a Ninject Package Exist For Web API? [duplicate]

Possible Duplicate: Issue using ASP.Net MVC 4 Web API with Ninject.Web.WebApi I am using asp.net web api that came with VS 2012. I started by making a new project(empty asp.net mvc ...
0
votes
1answer
61 views

Modifying and object returned .InRequestScope (Ninject)

If I ask for an object via injection and specify InRequestScope I am assuming that it returns the same instance until the request context changes. What I would like to know is if I modify that value ...
1
vote
3answers
71 views

Hot swapping bindings per request

We have an ASP.NET Web API app which uses Ninject for DI. This works perfect for use. One of the improvements we were considering is the ability to swap out parts of functionality per request based on ...
0
votes
1answer
59 views

Domain and Repository cross references in Ninject

I have 3 projects:Contracts, Domain, Repository. Contracts have interfaces. Domain and Repository both reference Contracts. The constructor of the Domain class gets passed IRepo. The constructor ...
1
vote
1answer
889 views

How to intercept all the ASP.NET WebApi controller action methods calls with Ninject interception for logging?

Our company has the need to log certain things each time one of our action methods of our ASP.NET WebApi controllers gets called. Since we use Ninject for the DI right now, we'd like to use it also ...
4
votes
1answer
1k views

How to use Ninject with ASP.NET Web API?

In MVC I simply make the class NinjectControllerFactory that implements DefaultControllerFactory interface then do some bindings in it. at last in Global I run it: ...
4
votes
1answer
233 views

Why do I get an Ninject InvalidOperation exception after my API Controller has completed its request?

I have an MVC4 web app project as part of a larger solution. I also have a test project. I am working with a bunch of code that is not going to be reworked, so I can't always make the changes I would ...
1
vote
1answer
290 views

Web API and Ninject Filter Causing Sequence contains no elements

I keep getting this error trying to bind a filter with all actions in an a web api controller. I am using Ninject 3.0 and ASP.NET MVC 4. <Response> <Message>An error has ...
1
vote
2answers
440 views

Ninject 3 - Does BeginBlock() override InRequestScope in asp.net WebAPI?

My asp.net WebApi project comprises of multiple assemblies for Services, Core and Data Access. In an attempt to use Ninject as my DI container in the project, I added Ninject.Web.Common package from ...
0
votes
2answers
417 views

Ninject throws Activation Exception in a WebApi project with multiple assemblies

My asp.net WebApi project comprises of multiple assemblies for Services, Core and Data Access. In an attempt to use Ninject as my DI container in the project, I added Ninject.Web.Common package from ...
0
votes
0answers
146 views

Ninject + Ninject.Extensions with Web API does not resolve types.

In an attempt to use Ninject as my DI container in a WebAPI project, I added Ninject.Web.Common package from NuGet. Then, I Implemented IDependencyResolver as: public class NinjectDependencyResolver ...
0
votes
2answers
1k views

Autobinding in MVC4 WebApi with Ninject.Extensions.Conventions

In my MVC4 app I'm using Ninject.Extensions.Conventions to autobind all itnerfaces with their implementation using default mechanism: kernel.Bind(x => x .FromAssembliesMatching("*") ...
1
vote
4answers
1k views

Controller does not have a default constructor 500 internal server error

This is my controller public class SuggestionController : ApiController { public ISuggestionRepository Repository { get; private set; } public SuggestionController(ISuggestionRepository ...
0
votes
2answers
420 views

Subclassing AuthorizeAttribute with WebApi not working returns 401?

I'm subclassing the AuthorizeAttribute so I can implement token authentication whereby the token is passed in the request header. I'm also using Ninject for IoC. The overriden OnAuthorization method ...
5
votes
3answers
757 views

Web Api - Request Parameters Outside Controller

I'm working on a ASP.NET Web Api project and made it accept version information in the url. For example: api/v1/MyController api/v2/MyController Now I would like to get the request version ...
0
votes
0answers
171 views

Getting error with Ninject Exception: “Interface Not Found.”

I am having an issue with injection working properly with my application. I have been getting this exception: Interface not found. To make it simplified I made a new application with simple classes, ...
5
votes
3answers
264 views

How to set up Ninject DI to create Hyprlinkr RouteLinker instances

I have an MVC4 Web API project and I making use of Mark Seemann's Hyprlinkr component to generate Uris to linked resources. (Customer -> Addresses for example). I have already followed Mark's guide ...
2
votes
2answers
427 views

Singleton Scope binding not working as intended

I am using the ninject mvc3 plugin with my web api application. I have a binding that looks like: kernel.Bind<IFoo>().To<Foo>().InSingletonScope(); It is my interpretation that the ...
3
votes
2answers
476 views

Using Ninject to Bind WebApi Filter Attributes

I'm currently using ninject.mvc3 in my asp.net webapi project, and it works fine. I am now trying to bind filter attributes, but BindFilter and BindHttpFilter are missing from IKernel interface when ...
0
votes
2answers
2k views

Ninject not working in Web API contructor in ASP.NET MVC 4

I am new to ASP.NET Web API. I have upgraded my ASP.NET MVC 3 project to ASP.NET MVC 4 by using this tutorial. Now I am trying to use Web Api here, as you can see I am trying to use ninject here, ...
0
votes
1answer
205 views

Correct implementation of Ninject filter binding with Web API

When binding to a Filter should I use the BindFilter extension method included in the Ninject.Web.WebApi or the new convention below, or both? GlobalConfiguration.Configuration .Filters.Add(new ...
1
vote
2answers
964 views

Ninject, Web API and MVC 4 Filter Binding disposing datacontext

I have an issue with my datacontext getting disposed every once in a while in one of my filters attached to my web api controllers. Is this the correct way to setup a filter for my Web API ...
1
vote
3answers
114 views

How to implement DI for an attribute in WebApi?

I refactored an attribute, which implements Basic Http Authentication in the Web api, to have DI as follows: public class BasicHttpAuthAttribute : ActionFilterAttribute { private ...
7
votes
1answer
1k views

ASP.NET MVC WebApi: No parameterless constructor defined for this object

I have an ASP.NET MVC 4 Application that I want to implement Unit of Work Pattern. In my Web Project I have: IocConfig.cs using System.Web.Http; using NinjectMVC.Data; using ...
1
vote
1answer
368 views

Ninject dependency into AuthorizationAttribute MVC4 Web API RC

I have a custom authorization attribute, required only for some actions, which checks the request headers for a custom token. The token is checked in a database. Checking the database requires access ...
0
votes
1answer
235 views

Dependency Injection for Long-Lived Objects in Web API?

I'm putting together a REST service using ASP.NET Web API & Ninject, though I suspect this might be a more general IoC question than anything specific to my IoC framework. I have a number of ...
0
votes
0answers
185 views

Binding for injecting HttpControllerContext for Web Api using ninject

I have a service that takes HttpControllerContext for constructor injection. What is the binding for this? The bindings are setup in the NinjectWebCommon file under WebActivator. By binding, I mean ...
7
votes
2answers
1k views

Ninject InSingletonScope with Web Api RC

I'm having some difficulty using Ninject's InSingletonScope binding with Web Api RC. No matter how I create my binding, it looks like perhaps Web Api is handling scope/lifetime instead of Ninject. ...
1
vote
0answers
135 views

Error when disposing a IActivationBlock and importing IKernel

The problem started when I was trying to use the solution below to use Ninject 3 with a MVC 4 RC Web Api project: http://www.peterprovost.org/blog/2012/06/19/adding-ninject-to-web-api/ This solution ...
11
votes
1answer
7k views

Issue using ASP.Net MVC 4 Web API with Ninject.Web.WebApi

I'm trying to use the new ASP.Net MVC 4 Web API project template with Ninject but have hit a wall on the following error: Method 'GetFilters' in type ...
1
vote
1answer
543 views

Ninject and Asp.Net Web API problems with dependency injection

I have an ASP.NET web api project side by side with a MVC3 project. For both projects Ninject is configured as a dependency resolver. I'm having problems in the web api project, since I am writing my ...
10
votes
1answer
398 views

Using Ninjects InRequestScope() when selfhosting Web API

I'm creating an application that has a ASP.NET Web API interface using the Self Hosting approach. I want to use a scope similar to InRequestScope() provided by MVC3. When I host a Web API application ...
0
votes
1answer
250 views

InRequestScope disposes entitycontext for DelegatingHandlers

When I bind my context as InRequestScope, the context is disposed when the code in DelegatingHandler is called (instantiated in Application_Start and executed before controllers are initialized). If ...
1
vote
1answer
2k views

NinjectWebCommon Bindings in RegisterServices not working for me in WebApi

I create a new ASP.NET Web API project. I then use nuget to pull Ninject.Web.Common, then I download and build Ninject.Web.WebApi from here. Included it in the project. I added a service and the ...
2
votes
1answer
845 views

ASP.NET Web API Ninject constructor injected custom filter and attributes

I'm struggling with getting a custom attribute / filter working with ninject, constructor injection on the ASP.NET Web API. Here's a few snippets to give some context... //controller [ApiAuthorise] ...
11
votes
5answers
4k views

Using Ninject with Asp.NET Web API Beta ApiController

I'm stuck. I was using the method outlined here for wcf web api p6 Ninject working with WCF Web API Preview 5, however things are quite a bit different with the mvc implementation in the beta. There ...