A NuGet package that allows other packages to execute some startup code in web apps.
0
votes
0answers
98 views
How can I register a controller vis WebActivatorEx in .NET MVC4?
I am trying to register a controller defined in another assembly via a WebActivatorEx assembly attribute. When I try to hit the controller, though, I get a 404. What am I doing wrong?
Here's the ...
1
vote
1answer
39 views
WebActivator - access to the Server object / current directory
I have a WebActivator bootstrapper that needs access to the Server property. Specifically, it needs to know what Server.MapPath("~") is.
Is there a way to do this?
1
vote
1answer
72 views
WebActivator error when converting Breeze js code to vb.net
After converting some breeze API from C# code to VB.NET, WebActivator throws Server Error in '/' Aplication when I run my project with the message:
The type DevCentralBreeze.HotTowelRouteConfig ...
2
votes
2answers
80 views
How do I get the website root outside of a request?
Inside of a request, I can use Server.MapPath() to access the website root. How can I access that function or otherwise get the website root without access to Server? I am trying to build a binding ...
1
vote
1answer
2k views
asp.net MVC 4 with StructureMap
I am converting an ASP.NET MVC3 project to MVC4. I was trying to find the best approach to work with StructureMap and MVC4. I've found a couple of solution which might work, but haven't tried them ...
0
votes
1answer
674 views
assembly: WebActivator.PreApplicationStartMethod Not working
Basically my code look slike below:
[assembly: WebActivator.PreApplicationStartMethod(typeof(OpusOneCorp.Presentation.Client.Mvc.EndUser.App_Start.StructuremapMvc), "Start")]
namespace ...
1
vote
1answer
153 views
How to get root Url from within App_Start code?
I'm trying to preload the output cache in mvc4 application using WebActivator. I figured I could simply make an async call to a few routes and that would do the trick. Unfortunately, I can't find ...
1
vote
1answer
246 views
Start WebActivator from unit test
I am trying to write integration tests. Therefore I need the start methods of WebActivator to be executed in the pre-start initialization stage of my unit tests.
I tried this
[TestClass]
public ...
2
votes
1answer
306 views
Ninject 3.0 (NuGet) with ASP .NET WebForms not calling WebActivator
I created a brand new WebForm site (VS2010) and added Ninject.Web (3.0) from NuGet...
It created NinjectWeb and NinjectWebCommon on App_Start... Its compiling fine, but it never exeute the code ...
...
0
votes
1answer
260 views
Using WebActivator in VB.NET project
In order to make Elmah.MVC package work in VB.NET projects as well, I've create ASP.NET MVC3 VB.NET application added WebActivator Nuget package (v.1.5.1), in App_Start folder inserted simple code, ...
1
vote
2answers
241 views
Capturing ASP.NET MVC Errors and WebActivator
I want to know if it's possible to capture unhandled errors without modifying the web.config or global.asax files.
Ideally I would use the WebActivator package and have something like this:
...
1
vote
1answer
592 views
After deploying to AppHarbor I get The type or namespace name 'WebActivator' could not be found
I'm uploading my first application to AppHarbor and I'm getting the following error:
"The type or namespace name 'WebActivator' could not be found (are you missing a using directive or an assembly ...
5
votes
2answers
1k views
NinjectMVC3's WebActivator.PreApplicationStartMethod assembly attribute causing warnings in my view source editors
When using NinjectMVC3's WebActivator.PreApplicationStartMethod attribute in my web application,
[assembly: WebActivator.PreApplicationStartMethod(typeof(MyProject.App_Start.NinjectMVC3), "Start")]
...
2
votes
2answers
386 views
Define an initialization order of WebActivator.PreApplicationStartMethod classes
I have several WebActivator.PreApplicationStartMethod decorated classes.
One is for Ninject, another class for AwesomeMVC and a third one is for background task scheduler.
The problem is that the ...
0
votes
2answers
306 views
Testing Ninject project installed via Nuget - WebActivate behavior
I am trying to create a NUnit test for a project that uses Ninject. The Ninject was installed via Nuget, so the Configuration clas looks similar to this simplified version:
[assembly: ...
2
votes
2answers
696 views
Error in downloading WebActivator with NuGet
I just updated my NuGet Package Manager on my corporate machine. Ever since the update, I am unable to add any package. I tried to install WebActivator for instance and got the following error:
...
1
vote
2answers
381 views
Ninject into a Webactivator invoked class
I use the nuget template way of ninjectning my MVC3 app,
which means I have use WebActivator to invoke a method on a static class that in turn creates a Ninject bootstrapper and hooks up to MVC3.
...
4
votes
1answer
628 views
Webactivator doesn't run on IIS 7
I have several web applications that make use of packages using WebActivator. On my local machine with IIS 7.5 Express, everything works fine whether I test in Release or Debug configurations. ...
1
vote
3answers
2k views
Nhibernate (Fluent), Ninject.Mvc3, and Web Activator
I am working on an ASP .NET Mvc 3 App and have installed Ninject.Mvc3 using Nuget. I now have the App_Start folder and then ninject class. I have seen plenty of examples on how to configure ...
0
votes
1answer
278 views
Nuget.exe not picking up App_Start folder
Has anyone experienced problems when NuGet pack command doesn't pick up the /App_Start or /content/App_Start folders where we put our .pp files for use with the WebActivator package?
I have to open ...
0
votes
1answer
120 views
Testing If a class is being activated using WebActivator and if add a IModelBinder to ModelBinderProviders.BinderProviders.
Dear fellows from Stack Exchange.
I'm trying to test if my Custom Model Binder is being added to the ModelBinderProviders.BinderProviders collection.
I decided to activate this through WebActivator, ...
14
votes
2answers
6k views
Ninject.MVC3, Nuget, WebActivator oh my
I want to setup Ninject to do a simple test, as well as demonstrate the ease-of-setup using Nuget. I want to resolve a sample service.
public interface ITestService
{
string GetMessage();
}
...
11
votes
2answers
5k views
Ninject and MVC3: Dependency injection to action filters
I've found loads of inconclusive articles and questions on how to do property injection on an ActionFilter in ASP.NET MVC3 using Ninject.
Could someone give me a clear example please?
Here's my ...
5
votes
2answers
2k views
What's the proper way to configure Ninject for an MVC3 application?
I've read several articles regarding the setup of Ninject for MVC3 projects.
Some say that your Global.asax.cs should inherit from NinjectHttpApplication, others register modules when constructing ...
3
votes
2answers
429 views
Preferred way to setup and run code in Application_Start
What is the preferred way to hook up and run some code in Application_Start and Application_Endrequest without having to put the code in the MvcApplication class each time?
Maybe there is an event, ...

