1
vote
0answers
23 views

Nhibernate throwing Session is closed

I'm flapping in the wind, so I thought I'd ask here... Please let me know if this is obvious and has been answered before. I'm building an MVC3 site which works fine while I'm running it with one ...
-1
votes
0answers
50 views

Create a Modular system that each Module have a series Feature [closed]

I have created a modular system with ASP.NET MVC 4. My modules add to Framework project as Dll file and with Ninject load and work properly. But for now I want each module have a series feature that ...
1
vote
2answers
73 views

How to resolve constructor injection with multiple layers

In my project I had a controller dependency on IRepositoryProvider among others. public class HomeController : BaseController { public HomeController(ISessionWrapper sessionWrapper, ...
1
vote
1answer
76 views

Difference between standard ninject and ninject.web.mvc in an MVC3 project?

I understand some of the functionality of Ninject and have been able to use it for IoC. When I go to add a reference to Ninject to a project in VS2010, using NuGet, I see other Ninject extensions in ...
1
vote
2answers
702 views

How to set up IIS 7 application pool identity correctly?

Having deployed my website to IIS7.5 I found one strange behaviour: when application pool identity is left to be ApplicationPoolIdentity by default (as recommended in IIS Application Pool Identities), ...
1
vote
1answer
92 views

Mock default role provider for controller's action unit test

Hope this is not a dumb question. I've been searching for two days a way to mock calls for system.web.security.roles on my actions. I want my unit tests to be isolated and not involve calls to ...
0
votes
0answers
281 views

Entity Framework, Ninject dependency injection, and ASP.NET MVC 3, with existing .MDF file as database

I'm making a long and detailed post here, but I sincerely believe it's better to provide as much info up front. If any further clarification is needed, please ask. My heartfelt thanks to you for ...
1
vote
0answers
65 views

Ninject Generating a TypeLoadException in MVC3

I am trying to execute the following test method using Ninject and MVC: [TestMethod] public void CreateEntityTest() { using (IKernel kernel = new StandardKernel()) { ...
1
vote
1answer
139 views

Generics and Property binding in Ninject

I'm looking for a good way to incorporate settings inside my webapp (asp mvc). I've came across a really nice implementation in NopCommerce. NopCommerce stores the values in a database table, with a ...
0
votes
1answer
142 views

Exception when adding a View to MVC3

I'm using Visual Studio 2012 Express for Web. When I try to add a view, I get an error saying: The templates had the following 1 error(s)** C:\Program Files\Microsoft Visual Studio ...
1
vote
2answers
75 views

Injection using NInject in ISiteMapNodeVisibilityProvider

Hello stackoverflow community! I have a small problem which, hopefully, you will help me put behind. I am using an MvcSiteMapProvider, and I want to define visibility for each node using access to a ...
0
votes
1answer
74 views

avoiding try catch code on the dao layer and catching it on the service layer

I have a service layer which references the dao layer. I use ninject's inversion control to tie the implementation. public class DaoA : IDaoA { private DaoA _dao; public void daoMethod() { ...
0
votes
0answers
46 views

Ninject Global EventBroker in an MVC app. Do subscriptions span across separate requests?

I'm just starting to use Ninject EventBroker extension in an MVC app and need a little help solidifying my understanding of how these work. I have two services, let's call them Service1 and Service2. ...
3
votes
1answer
111 views

Lifetime management with Ninject Dependency Creator and Event Broker

I'm using Ninject in a reasonably large project and want to utilize the Dependency Creation and Event Broker extensions. The Dependency Creation readme gives the following example (although I believe ...
1
vote
2answers
237 views

Ninject + MVC3 is not injecting into controller

I have used the NuGet Ninject MVC3 extension and have been unable to get it to inject into a controller upon request. It doesn't seem to have bound, as MVC is looking for the paramaterless ...
0
votes
1answer
112 views

IModelBinder not firing on MVC 3

I have this Controller: [HttpPost] public JsonResult Execute(PaymentModel paymentModel){...} this is the model public class PaymentModel { [Required] [DisplayName("Full name")] public string ...
0
votes
0answers
102 views

Debugging MVC3 Source code with Ninject error

I am trying to understand how the Html Helpers are built inside MVC 3. So i downloaded MVC 3 source and added as another project in same solution to debug it. I followed this steps. Removed ...
0
votes
2answers
84 views

NInject <SuperType> is defined in an assembly that is not referenced

NInject noob here. Sorry about the wall of code that follows, but there's a lot of moving parts here. I've got a namespace that defines the implementation agnostic persistance interfaces I want to ...
0
votes
1answer
89 views

ninject 3 render out object context instances

Entity Framework 4, Ninject 3, MVC3 Currently in my web app i have been using a rather rudimentary approach to per request instantiation of an Object Context. So I am experimenting with Ninject, and ...
2
votes
1answer
92 views

Confusion over MVC3 Code First / Repositories

Please can someone help me because I am getting confused. I have an Entity like this: public class Code { public int ID { get; set; } public int UserID { get; set; } public string ...
0
votes
0answers
202 views

consume wcf services in mvc3 project using ninject

I have a project that has WCF running. Now I have added that WCF as a Web Service in another MVC3 project. Now I want to use ninject so that I can use all the services available by using only ...
0
votes
1answer
113 views

ASP.NET MVC 3 deployment error

When I run my ASP.NET MVC 3 application with the Ninject it works perfectly, but when I deploy it onto an IIS, it gives this error: [NullReferenceException: Object reference not set to an ...
2
votes
1answer
225 views

using ninject to inject dependency to The Model classes or non-controller classes

I using Ninject 3 in Repository pattern in mvc 3 (steven sanderson Scaffolder). and in ninject i have the class "NinjectWebCommon" which in the "RegisterServices" method i resolved the dependencies ...
0
votes
1answer
182 views

Ninject + MVC3 + Medium Trust Environment

Ok, read a lot of questions about this, but really didn't see any solution that works for me... So, any help will be very apreciated. I'm running a MVC3 web application with Ninject installed through ...
1
vote
2answers
139 views

Choose injection constructor based on setting in .config file

I have a MCV3 app that uses Ninject as a DI container. I have one object that has 2 constructors (each with 1 parameter) public MyObject(IDependencyOne dep){} public MyObject(IDependencyTwo dep){} ...
1
vote
1answer
412 views

webapi with ninject

I'm having a trouble, making Ninject and WebAPI.All working together. I'll be more specific: First, I played around with WebApi.All package and looks like it works fine to me. Second, I added to ...
1
vote
1answer
722 views

Passing parameters to the Controller Constructor using Ninject

This is an MVC application where the controllers need a DataContextCreator and a CustomerID in the constructor. My ControllerFactory looks like: public class NinjectControllerFactory : ...
1
vote
1answer
170 views

Trouble injecting factory into custom membership provider in ASP.NET MVC 3 with Ninject 3.0.0 with Factory extension

I am creating an ASP.NET MVC 3 webapp that has a custom membership provider. I am using Ninject.Extensions.Factory 3.0.0 to try to inject a factory into a public property on my custom membership ...
0
votes
1answer
92 views

Custom ModelMetadataProvider is a singleton but depends on a request-scoped service

In my ASP.NET MVC project, I have a custom ModelMetadataProvider that requires a service PropertyAccess. I'm currently using constructor injection and an IOC container (Ninject) to do the dirty work. ...
2
votes
2answers
216 views

How to inject my database context into all my repository classes

Each of my repository classes look like this: public class ProfileRepository : IProfileRepository{ private MyEntities myEnt = new MyEntities(); ... } I am injecting my repository classes ...
3
votes
2answers
258 views

Ninject: Choosing the wrong constructor

I have an ASP.NET MVC 3 application with Ninject v2.2.1.4. Everything was working great and then suddenly we started seeing Ninject attempting to create our DbContext using a constructor with a ...
2
votes
3answers
423 views

Ninject.MVC constructor injection where the injected object's constructor takes an argument

Hi I am using the Ninject.MVC Nuget package with my MVC3 app and I have the current bindings setup for some constructor injection. private static void RegisterServices(IKernel kernel) { ...
2
votes
0answers
104 views

ChildAction in ASP.NET MVC 3 with Ninject and EntityFramework

I am having a weird issue with an ASP.NET MVC 3 application using Ninject and EntityFramework. We have a ISession interface, which is extended by EntitySession who is in fact a light wrapper over ...
1
vote
1answer
440 views

What happened To Ninject's InRequestScope

I started a new project today and went to nuget to get ninject. I downloaded the Ninject MVC3 plugin that should download everything else I need. I then took some old code from a different project ...
1
vote
0answers
248 views

Ninject Interception MVC 3 Controller

I have intereception working with the Ninject Interceptions Extentions and Dynamic Proxy v3.0. I'm trying to class proxy intercept an MVC 3 contoller. The controller is intercepted but the behavior ...
2
votes
0answers
249 views

ASP.Net MVC Execution of the command requires an open and available connection. The connection's current state is broken

Several of our internal apps are MVC3 and all use Ninject.MVC. We're running into an issue that affects all the tools at one point. First we get the error: Error executing child request for handler ...
7
votes
2answers
598 views

Strange error w/ NinjectValidatorFactory after updating FluentValidation w/ Nuget

I have the following line of code in my NinjectModule: Bind<IValidatorFactory>().To<NinjectValidatorFactory>().InSingletonScope(); This used to work fine, but after doing a bunch of ...
0
votes
2answers
75 views

Do I have to call kernel.Get to instantiate an object when using Ninject?

So many of the examples for Ninject are very, very basic. It's either just a controller, or they create the kernel and the object's in a single function for demonstration purposes. So for some ...
0
votes
1answer
743 views

Passing multiple models to a view using MVC3 and Ninject

I'm new to MVC3 (which is why I bought a book on it, which is why I now have this question!), so apologies if there is an obvious answer to this! I'm following a simple example of building a shopping ...
1
vote
1answer
159 views

Handling application settings with ninject and convention based binding

I am using Ninject in an MVC3 application and am trying to switch over to conventions based binding with ninject.extensions.conventions. Now let's say I have a class that needs access to application ...
0
votes
1answer
452 views

Inheriting a base controller with constructor

I am using ninject to inject my repositories. I would like to have a my base class to be inherited but I cant because it has a constructor. Base Controller: namespace Orcha.Web.Controllers { ...
2
votes
1answer
400 views

asp.net mvc memory leak

Background: Asp.net project (VB.Net) using Ninject 2.2.0.0 IoC, Repository pattern and Service layer Ninject bindings use InRequestScope() Problem: Project is about to go live but stress testing ...
0
votes
1answer
279 views

Injecting a property in MVC 3 with Ninject

I'm trying to inject a property into an ActionFilter of mine called UnitOfWorkAttribute. I have this code: [Inject] public IUnitOfWork UnitOfWork { get; set; } Before that gets executed, I tell ...
0
votes
3answers
80 views

Do I need the Ninject.Web.Mvc library in my application in order to use Ninject in my ASP.NET MVC 3 application?

I downloaded the Ninject.Web.Mvc module and noticed that it did not contain the NinjectHttpApplication class which I discovered was in the Ninject.Web.Common and I have been using Ninject.Web.Common ...
0
votes
1answer
325 views

Getting “The resource cannot be found.” error when using Ninject

I'm working on an ASP.NET MVC 3.0 application, using Ninject as my dependency injection framework. So I've inherited my controller from NinjectHttpApplication like so: public class MvcApplication : ...
2
votes
4answers
119 views

Ninject - Create class conditionally in .Net MVC 3

I feel like there is something obvious I'm missing here. I am trying to use ninject to create a class. The class accepts a single string parameter which is stored in Session of the HttpContext. How ...
2
votes
1answer
307 views

Plugin Architecture with ninject – load class and controller instances from plugin assembly to main MVC project

I use this tutorial to create Plugin Architecture in my solution and I also use ninject for the first time: ...
2
votes
1answer
584 views

Replace Ninject with Simple Injector

I've used Ninject for my application. Ninject is really simple and easy to learn, but its quite slow and I try to use another IoC to compare if its faster as with Ninject. There are a lot of IoC ...
0
votes
0answers
447 views

MVC3 Caching + Repository Pattern + Ninject

I'm newbie to ASP.NET MVC and trying to implement Adventure works store for learning. I'm using dapper for accessing database and my sample db access looks like below. public class ...
0
votes
1answer
200 views

Ninject, Database Connection and Separate Application Pools for Same Website

I am using Ninject to use the same database connection per request. We have a route called RosterProcess that is another web application inside the root, but using the same code base so we can have ...

1 2 3 4 5 7