User Peter Meyer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T16:12:14Zhttp://stackoverflow.com/feeds/user/1875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1719249/error-with-accountcontroller-and-ninject-2-and-asp-net-mvc-2-preview-2/1723565#17235652Answer by Peter Meyer for Error with AccountController and Ninject 2 and ASP.NET MVC 2 Preview 2Peter Meyer2009-11-12T16:35:26Z2009-11-12T16:35:26Z<p>The most recent version of Ninject.Web.Mvc is using a transient scope to register the controllers in <code>RegisterAllControllersIn</code>:</p>
<pre><code>public void RegisterAllControllersIn(Assembly assembly,
Func<Type, string> namingConvention)
{
foreach (Type type in assembly.GetExportedTypes().Where(IsController))
_kernel.Bind<IController>()
.To(type)
.InTransientScope()
.Named(namingConvention(type));
}
</code></pre>
<p>I looked into the the <code>NinjectControllerFactory</code> class as well. Its CreateController function is pretty basic. It does a TryGet on the kernel for the controller and returns what it gets back -- if it can't find the controller, it delegates to the base class:</p>
<pre><code>public override IController CreateController(RequestContext requestContext,
string controllerName)
{
var controller = Kernel.TryGet<IController>(controllerName.ToLowerInvariant());
if (controller == null)
return base.CreateController(requestContext, controllerName);
var standardController = controller as Controller;
if (standardController != null)
standardController.ActionInvoker = new NinjectActionInvoker(Kernel);
return controller;
}
</code></pre>
<p>So, based on the binding setup and based on the factory, it would seem it's not creating objects in Singleton scope. One thing you could do is write a little debug code after you create your kernel and check the bindings yourself to confirm what the scope is. I did a little experiment and added the code to my HttpApplication class show below. Full disclosure, this is using ASP.Net MVC 1.0, so your mileage may vary. If I have the opportunity, I will get the latest MVC 2 preview and try the same experiment.</p>
<pre><code>protected void DumpBindings() {
var bindings = Kernel.GetBindings(typeof(IController));
var dummyRequest = new RequestContext(
new HttpContextWrapper(HttpContext.Current),
new RouteData());
foreach (var binding in bindings) {
var scope = "Custom";
if (binding.ScopeCallback == StandardScopeCallbacks.Request)
scope = "Request";
else if (binding.ScopeCallback == StandardScopeCallbacks.Singleton)
scope = "Singleton";
else if (binding.ScopeCallback == StandardScopeCallbacks.Thread)
scope = "Thread";
else if (binding.ScopeCallback == StandardScopeCallbacks.Transient)
scope = "Transient";
HttpContext.Current.Trace.Write(
string.Format(
"Controller: {0} Named: {1} Scope: {2}",
binding.Service.Name,
binding.Metadata.Name,
scope));
var controllerFactory = ControllerBuilder.Current.GetControllerFactory();
var controller1 = controllerFactory.CreateController(
dummyRequest, binding.Metadata.Name);
var controller2 = controllerFactory.CreateController(
dummyRequest, binding.Metadata.Name);
HttpContext.Current.Trace.Write(
string.Format(
"{0} controller1 == {0} controller2 ? {1}",
binding.Metadata.Name,
object.Equals(controller1, controller2)));
}
}
</code></pre>
<p>I called this right after the call to <code>RegisterAllControllersIn</code> in the <code>OnApplicationStarted</code>. It created the following messages in the trace output:</p>
<blockquote>
<p>Controller: IController Named: home<br>
Scope: Transient home controller1<br>
== home controller2 ? False Controller: IController Named: account<br>
Scope: Transient account controller1<br>
== account controller2 ? False </p>
</blockquote>
<p>So, all this does is confirm that transient scope is being used and that the controller factory is returning a different instance of the same controller when requested. So, the only thing I can think of is that:</p>
<ol>
<li>Perhaps you are not using the latest builds of Ninject 2 and Ninject.Web.Mvc</li>
<li>The issue is at the MVC level -- i.e. it's reusing the controller created by the factory</li>
</ol>
http://stackoverflow.com/questions/1394697/what-is-the-equivalent-of-container-getallinstancest-in-ninject/1395850#13958501Answer by Peter Meyer for What is the equivalent of Container.GetAllInstances<T> in NInject?Peter Meyer2009-09-08T19:25:33Z2009-09-08T19:25:33Z<p>If you if you don't have the polymorphic situation as discussed in the thread that is referenced by <a href="http://stackoverflow.com/questions/1394697/what-is-the-equivalent-of-container-getallinstancest-in-ninject/1394758#1394758">Romain's answer</a>, then you shouldn't have any issues as long as you are using Ninject 2. Ninject 1.x did not include this sort of support.</p>
http://stackoverflow.com/questions/604814/asp-net-mvc-actionlinks-and-shared-hosting-aliased-domains2ASP.Net MVC ActionLink's and Shared Hosting Aliased DomainsPeter Meyer2009-03-03T01:52:11Z2009-09-08T14:58:29Z
<p>So, I've read <a href="http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment">this</a> and I've got a similar issue:</p>
<p>I have a shared hosting account (with GoDaddy, though that's not exactly relevant, I believe) and I've got an MVC (RC1) site deployed to a sub-folder which where I have another domain name mapped (or aliased). The sub-folder is also setup as an application root as well.</p>
<p>The site works without issue, the problem is that I don't like the links that are being generated using Html.ActionLink and Ajax.ActionLink. It's inserting the sub folder name as part of the URL as described in this <a href="http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment">other question</a>. Thing is, the site works fine, but I'd like to make the links generated relative to the domain name. </p>
<p>To use an example:</p>
<pre><code>http://my.abc.com "primary" domain; maps to \ on file system
http://my.xyz.com setup to map to \_xyz.com folder on file system
</code></pre>
<p>My generated links on <strong>xyz.com</strong> look like this:</p>
<pre><code>Intended Generated
-------- ---------
http://my.xyz.com/Ctrller/Action/52 http://my.xyz.com/_xyz.com/Ctrller/Action/52
</code></pre>
<p>and, FWIW, the site works. </p>
<p>So, the question: Is there something I can do to get rid of that folder name in the links being generated? I have a couple of brute force ideas, but they aren't too elegant.</p>
http://stackoverflow.com/questions/1261357/ninject-kernel-binding-overrides/1263978#12639780Answer by Peter Meyer for Ninject kernel binding overridesPeter Meyer2009-08-12T02:53:49Z2009-08-12T02:53:49Z<p>What I tend to do is have a separate test project complete with it's own bindings -- I'm of course assuming that we're talking about unit tests of some sort. The test project uses its own kernel and loads the module in the test project into that kernel. The tests in the project are executed during CI builds and by full builds executed from a build script, though the tests are never deployed into production. </p>
<p>I realize your project/solution setup may not allow this sort of organization, but it seems to be pretty typical from what I've seen.</p>
http://stackoverflow.com/questions/1054152/should-i-use-insingletonscope-when-binding-membershipprovider-in-ninject/1260456#12604561Answer by Peter Meyer for Should I use InSingletonScope when binding MembershipProvider in NInject?Peter Meyer2009-08-11T13:42:21Z2009-08-11T13:42:21Z<p>ASP.Net already provides a static instance of the current membership provider via the static <strong>Membership</strong> class and its static <strong>Provider</strong> property. The binding would likely be in your Application_Start method and look something like this:</p>
<pre><code>Bind<MembershipProvider>()
.ToMethod(ctx => Membership.Provider);
</code></pre>
<p>Again, because the <strong>Memberhip.Provider</strong> is a static, it's sort of like a singleton already, so the behavior you try to apply doesn't really matter as much. </p>
<p>By not specifying any behavior in the above snippet, Ninject will default to a transient behavior. In this sort of a binding, I believe that will amount to calling the lambda that returns <strong>Membership.Provider</strong> every time it needs to inject a <strong>MembershipProvider</strong> type. </p>
<p>I suppose there could be an argument for explicitly specifying a singleton behavior as Ninject would likely "cache" the value returned by the lambda the first time it needs to inject a <strong>MembershipProvider</strong>, in effect saving the overhead of executing the lambda. I'm not 100% sure that's how Ninject would work in this situation, but it seems reasonable that it would.</p>
<p>All that said, my personal preference would be to use <strong>OnePerRequestBehavior</strong>, this way I know Ninject will call my lambda once for each request. Not sure it's necessary, but I like the idea of getting the provider from <strong>Membership.Provider</strong> once each request since I suppose you can't make assumptions about how or when <strong>Membership.Provider</strong> get's set, though you could probably find out if you dig enough with Reflector.</p>
<pre><code>Bind<MembershipProvider>()
.ToMethod(ctx => Membership.Provider)
.Using<OnePerRequestBehavior>();
</code></pre>
<p>Good luck. Sorry your question sat out here so long!</p>
http://stackoverflow.com/questions/1258498/ninject-equivalent-of-unity-registerinstance-method/1259889#12598892Answer by Peter Meyer for Ninject equivalent of Unity RegisterInstance methodPeter Meyer2009-08-11T11:53:07Z2009-08-11T11:53:07Z<p>Not sure what sort of mocking tool, if any, or version of Ninject you're using; however, it's worth mentioning that Ninject 2 has an extension for it that provides integration with Moq -- <a href="http://github.com/enkari/ninject.moq" rel="nofollow">http://github.com/enkari/ninject.moq</a>. </p>
<p>I realize this doesn't directly answer your question, <a href="http://stackoverflow.com/questions/1258498/ninject-equivalent-of-unity-registerinstance-method/1258578#1258578">Anderson's</a> does that well, but thought it might be relevant anyway.</p>
http://stackoverflow.com/questions/1245517/ninject-binding/1258325#12583251Answer by Peter Meyer for Ninject BindingPeter Meyer2009-08-11T03:18:03Z2009-08-11T03:18:03Z<p>I'll make a couple of assumptions here. </p>
<ol>
<li>You have an interface named IBar in your Foo.Domain project and you have a concrete class called BarClass in your Foo.Data project.</li>
<li>You in fact reference Foo.Domain project in your Foo.Data project because BarClass implements IBar.</li>
</ol>
<p>The simplest thing to do with Ninject is to create a new class in Foo.Data that derives from Ninject's StandardModule:</p>
<pre><code>internal class BarModule : StandardModule {
public override void Load() {
Bind<IBar>()
.To<BarClass>();
}
}
</code></pre>
<p>This class then establishes the binding for requests of IBar to the concrete class of BarClass. This is your XML equivalent.</p>
<p>The next step is to create the Ninject kernel (aka a "container") and provide this module (i.e. this configuration) to it. Where you do this depends greatly on what kind of an application you are creating. In very general terms, you will typically configure the kernel at the logical entry point or "start-up" section of your code. If it were a console or Windows desktop application, this would likely be one of the first things that the main() function does. </p>
<p>The code would like this:</p>
<pre><code>var modules = new IModule[] {
new BarModule()
};
var kernel = new StandardKernel(modules);
</code></pre>
<p>At this point, when you do something like this: </p>
<pre><code>var barObj = kernel.Get<IBar>()
</code></pre>
<p>The variable barObj references an instance of BarClass.</p>
<p>All said, I could very well not have a full understanding of all the nuances of your application -- e.g. assemblies are loaded dynamically, etc. Hope this is of some help anyway.</p>
http://stackoverflow.com/questions/1230692/ninject-not-firing/1234097#12340972Answer by Peter Meyer for Ninject not firing?Peter Meyer2009-08-05T15:46:22Z2009-08-05T15:46:22Z<p>You need to add the <strong>AutoControllerModule</strong> to the list of modules you specify when creating the kernel, show below:</p>
<pre><code>protected override IKernel CreateKernel()
{
IKernel kernel = new StandardKernel(
new BaseModule(),
new AutoControllerModule(Assembly.GetExecutingAssembly())
);
return (kernel);
}
</code></pre>
<p>The <strong>AutoControllerModule</strong> is part of the MVC support in Ninject 1.x. It scans the assembly you provide to its constructor for MVC controller classes and auto-binds them. In the code, you have properly bound your repository, but Ninject is not in charge of activating your controllers. In order for your repository to be injected into an instance of your <strong>HomeController</strong> class, Ninject needs to be in charge of creating and activating controllers. Without the <strong>AutoControllerModule</strong>, MVC remains in charge of creating controllers; therefore, Ninject never gets a chance to inject any members. Once Ninject is in charge of creating and activating the controllers, the injection will occur as expected. </p>
<p>Think of the <strong>AutoControllerModule</strong> as finding all controllers and generating code like this (HomeController used as an example):</p>
<pre><code>Bind<HomeController>.ToSelf();
</code></pre>
http://stackoverflow.com/questions/1192004/specific-down-sides-to-many-small-assemblies/1215043#12150434Answer by Peter Meyer for Specific down-sides to many-'small'-assemblies?Peter Meyer2009-07-31T21:46:29Z2009-07-31T21:46:29Z<p>I will give you a real-world example where the use of many (very) small assemblies has produced .Net DLL Hell. </p>
<p>At work we have a large homegrown framework that is long in the tooth (.Net 1.1). Aside from usual framework type plumbing code (including logging, workflow, queuing, etc), there were also various encapsulated database access entities, typed datasets and some other business logic code. I wasn't around for the initial development and subsequent maintenance of this framework, but did inherit it's use. As I mentioned, this entire framework resulted in numerous small DLLs. And, when I say numerous, we're talking upwards of 100 -- not the managable 8 or so you've mentioned. Further complicating matters were that the assemblies were all stronly-signed, versioned and to appear in the GAC. </p>
<p>So, fast-forward a few years and a number of maintenance cycles later, and what's happened is that the inter dependencies on the DLLs and the applications they support has wreaked havoc. On every production machine is a huge assembly redirect section in the machine.config file that ensures that "correct" assembly get's loaded by Fusion no matter what assembly is requested. This grew out of the difficulty that was encountered to rebuild every dependent framework and application assembly that took a dependency on one that was modified or upgraded. Great pains (usually) were taken to ensure that no breaking changes were made to assemblies when they were modified. The assemblies were rebuilt and a new or updated entry was made in the machine.config. </p>
<p>Here's were I will pause to listen to the sound of a huge collective groan and gasp!</p>
<p>This particular scenario is the poster-child for what not to do. Indeed in this situation, you get into a completely unmaintainable situation. I recall it took me 2 days to get my machine setup for development against this framework when I first started working with it -- resolving differences between my GAC and a runtime environment's GAC, machine.config assembly redirects, version conflicts at compile time due to incorrect references or, more likely, version conflict due to direct referencing component A and component B, but component B referenced component A, but a different version than my application's direct reference. You get the idea.</p>
<p>The real problem with this specific scenario is that the assembly contents were far too granular. And, this is ultimately what caused the tangled web of inter dependencies. My thoughts are that the initial architects thought this would create a system of highly maintainable code -- only having to rebuild very small changes to components of the system. In fact, the opposite was true. Further, to some of the other answers posted here already, when you get to this number of assemblies, loading a ton of assemblies does incur a performance hit -- definitely during resolution, and I would guess, though I have no empirical evidence, that runtime might suffer in some edge case situations, particularly where reflection might come into play -- could be wrong on that point.</p>
<p>You'd think I'd be scorned, but I believe there are logic physical separations for assemblies -- and when I say "assemblies" here, I am assuming one assembly per DLL. What it all boils down to are the inter dependencies. If I have an assembly A that depends on assembly B, I always ask myself if I'll ever have the need to reference assembly B with out assembly A. Or, is there a benefit to that separation. Looking at how assemblies are referenced is usually a good indicator as well. If you were to divide your large library in assemblies A, B, C, D and E. If you referenced assembly A 90% of the time and because of that, you always had to reference assembly B and C because A was dependent on them, then it's likely a better idea that assemblies A, B and C be combined, unless there's a really compelling argument to allow them to remain separated. Enterprise Library is classic example of this where you've nearly always got to reference 3 assemblies in order to use a single facet of the library -- in the case of Enterprise Library, however, the ability to build on top of core functionality and code reuse are the reason for it's architecture. </p>
<p>Looking at architecture is another good guideline. If you have a nice cleanly stacked architecture, where your assembly dependencies are int the form of a stack, say "vertical", as opposed to a "web", which starts to form when you have dependencies in every direction, then separation of assemblies on functional boundaries makes sense. Otherwise, look to roll things into one or look to re-architect.</p>
<p>Either way, good luck!</p>
http://stackoverflow.com/questions/1158284/architecting-medium-size-asp-mvc-using-ninject-and-creating-objects/1173617#11736171Answer by Peter Meyer for Architecting medium size asp mvc - using ninject and creating objectsPeter Meyer2009-07-23T18:27:16Z2009-07-23T18:27:16Z<p>I've used Ninject specifically in an MVC application. The way you'd accomplish this with Ninject is in the configuration or binding of your dependencies. When you do this, you specify how you want your object lifetimes to be managed. In most cases of a web app, you objects will be per request as you've indicated in your question.</p>
<p>One thing I've noticed in your question is that your <em>DomainContext</em> is being created by an <em>IDomainService</em> object and is used by other objects. If the domain service object is a sort of factory for a <em>DomainContext</em>, then you don't have much of a problem -- this becomes an exercise of how you configure Ninject to provide concrete objects and inject dependencies. </p>
<p>Here's general guidance on how you would structure your application -- bear in mind I don't have full understanding of your interfaces and classes:</p>
<pre><code>public class GlobalApplication : NinjectHttpApplication {
protected override void RegisterRoutes(RouteCollection routes) {
// Your normal route registration goes here ...
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
}
// This function is resposible for creating a Ninject kernel. This is where
// the magic starts to happen.
protected override IKernel CreateKernel() {
var modules = new IModule[] {
new AutoWiringModule(),
new AutoControllerModule(
Assembly.GetExecutingAssembly()),
new ServiceModule()
};
return new StandardKernel(modules);
}
}
</code></pre>
<p>Note above that the easiest way to get Ninject to work is to derive your application class from the <em>NinjectHttpApplication</em> class. You will need to change your <em>RegisterRoutes</em> to an override method and will also be required to implement a method called <em>CreateKernel</em>. The <em>CreateKernel</em> method is responsible for returning the Ninject kernel which is itself the IoC container.</p>
<p>In the <em>CreateKernel</em> method, the Ninject-provided <em>AutoControllerModule</em> scans assemblies for MVC controller classes and registers them with the container. What this means is that dependencies on those controllers can now be injected by Ninject as it has become the controller provider for the application. The <em>ServiceModule</em> class is one that you need to create to register all of your services with Ninject. I'm guessing it would look something like this:</p>
<pre><code>internal class ServiceModule : StandardModule {
public override void Load() {
Bind<IDomainService>()
.To<MyDomainService>()
.Using<OnePerRequestBehavior>();
Bind<DomainContext>()
.ToMethod( ctx => ctx.Kernel.Get<IDomainService>().CurrentDomainContext )
.Using<OnePerRequestBehavior>();
Bind<IService>()
.To<MyServiceType>()
.Using<OnePerRequestBehavior>();
}
}
</code></pre>
<p>Ninject's got a pretty expressive fluent interface for configuration. Note above that each statement basically associates a concrete class with an interface it implements. The "Using" phrase in the statement indicates to the Ninject kernel that the object will live for the life of the request only. So, for example, this means that anytime an <em>IDomainService</em> object is requested from the Ninject kernel during the same request, the same object will be returned.</p>
<p>As for you context objects, I'm taking a stab that your domain service creates these contexts and acts as a factory of sorts. In that regard, I bound instances <em>DomainContext</em> classes above to be produced by getting the value of the a property called <em>CurrentDomainContext</em> off the <em>IDomainService</em>. That's what the lambda above accomplishes. The nice thing about the "ToMethod" binding in Ninject is that you have access to a Ninject activation context object that allows you to resolve objects using the kernel. That's exactly what we do in order to get the current domain context.</p>
<p>The next steps are to ensure your objects accept dependencies properly. For example, you say that <em>ITrainingService</em> is used only in the <em>TrainingController</em> class. So, in that case I would ensure that <em>TraininController</em> has a constructor that accepts an <em>ITrainingService</em> parameter. In that constructor, you can save the reference to the <em>ITrainingService</em> in a member variable. As in:</p>
<pre><code>public class TrainingController : Controller {
private readonly ITrainingService trainingService;
public TrainingController(ITrainingService trainingService) {
this.trainingService = trainingService;
}
// ... rest of controller implementation ...
}
</code></pre>
<p>Remember that Ninject has already registered all of your controllers with the Ninject kernel, so when this controller is created and it's actions are invoked, you'll have a reference to the <em>ITrainingService</em> by way of the trainingService member variable.</p>
<p>Hope this helps you out. Using IoC containers can become quite confusing at times. Note, I highly recommend you check out the <a href="http://dojo.ninject.org/MainPage.ashx" rel="nofollow">Ninject documentation</a> -- it's a very well written introduction to Ninject as well as DI/IoC concepts. I've also left out discussion of the AutoWiringModule shown above; however, Nate Kohari (Ninject's creator) has <a href="http://kohari.org/2008/06/08/attributes-we-dont-need-no-stinkin-attributes/" rel="nofollow">a good write-up</a> on his blog about this feature. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/962690/does-anyone-know-of-a-good-guide-to-get-ninject-2-working-in-asp-net-mvc/1012778#10127781Answer by Peter Meyer for Does anyone know of a good guide to get Ninject 2 working in ASP.NET MVC?Peter Meyer2009-06-18T13:58:36Z2009-06-18T13:58:36Z<p>Since you're already extending another HttpApplication-derived class, my thoughts are to just copy the relevant source code from the <strong>NinjectHttpApplication</strong> class into your extended HttpApplication class. Rather than cut and paste it, just look at the <a href="http://github.com/enkari/ninject.web.mvc/blob/635e6d2bb74dd9e60fb0115ddad9929d5672108c/src/Ninject.Web.Mvc/NinjectHttpApplication.cs" rel="nofollow">source</a> for <strong>NinjectHttpApplication</strong> in the Ninject2 Ninject.Web.Mvc extension project <a href="http://github.com/enkari/ninject.web.mvc/blob/635e6d2bb74dd9e60fb0115ddad9929d5672108c/src/Ninject.Web.Mvc/NinjectHttpApplication.cs" rel="nofollow">here</a>. </p>
<p>I would specifically copy the stuff in <strong>Application_Start()</strong> and <strong>Application_Stop()</strong> methods. The other methods for registering controllers are nice, but you can register your controllers however you wish. You'll note in the <strong>Application_Start()</strong>, the kernel is created by calling the pure virtual function <strong>CreateKernel()</strong> -- you can simply create your kernel inline right there. Additionally, note the presence of the Kernel property on the <strong>NinjectHttpApplication</strong> class -- I'd copy that into your own class as well. It would appear the intent here is that the HttpApplication-derived class effectively serves as the KernelContainer.</p>
<p>Disclaimer: I haven't tried this to see if it works, though I will be shortly. I've used Ninject 1.x in a web project and intend to upgrade to Ninject 2 in the near future; however, I'll probably be able to derive directly from NinjectHtppApplication. Good luck!</p>
http://stackoverflow.com/questions/737036/ninject-kernel-reference-in-win-service/915331#9153311Answer by Peter Meyer for Ninject kernel reference in win servicePeter Meyer2009-05-27T12:04:39Z2009-05-27T12:04:39Z<p>Rather than a static variable on the base task class, I would favor injecting the kernel into each class instance. This provides a bit more flexibility should you ever decide that you need more than one kernel (for whatever reason). The static variable in the base class just seems <em>yucky</em>, for lack of a better term.</p>
http://stackoverflow.com/questions/903657/c-method-that-is-executed-after-assembly-is-loaded/913784#9137841Answer by Peter Meyer for C# method that is executed after assembly is loadedPeter Meyer2009-05-27T03:20:07Z2009-05-27T03:20:07Z<p>I have used Ninject quite a bit over the last 9 months. Sounds like what you need to do is "load" your modules that exist in your libray into the Ninject kernel in order to register the bindings. </p>
<p>I am not sure if you're using Ninject 1.x or the 2.0 beta. The two versions perform things slightly differently, though conceptually, they are the same. I'll stick with version 1.x for this discussion. The other piece of information I don't know is if your main program is instantiating the Ninject kernel and your library is simply adding bindings to that kernel, or if your library itself contains the kernel and bindings. I am assuming that you need to add bindings in your library to an existing Ninject kernel in the main assembly. Finally, I'll make the assumption that you are dynamically loading this library and that it's not statically linked to the main program. </p>
<p>The first thing to do is define a ninject module in your library in which you register all your bindings -- you may have already done this, but it's worth mentioning. For example:</p>
<pre><code>public class MyLibraryModule : StandardModule {
public override void Load() {
Bind<IMyService>()
.To<ServiceImpl>();
// ... more bindings ...
}
}
</code></pre>
<p>Now that your bindings are contained within a Ninject module, you can easily register them when loading your assembly. The idea is that once you load your assembly, you can scan it for all types that are derived from StandardModule. Once you have these types, you can load them into the kernel.</p>
<pre><code>// Somewhere, you define the kernel...
var kernel = new StandardKernel();
// ... then elsewhere, load your library and load the modules in it ...
var myLib = Assembly.Load("MyLibrary");
var stdModuleTypes = myLib
.GetExportedTypes()
.Where(t => typeof(StandardModule).IsAssignableFrom(t));
foreach (Type type in stdModuleTypes) {
kernel.Load((StandardModule)Activator.CreateInstance(type));
}
</code></pre>
<p>One thing to note, you can generalize the above code further to load multiple libraries and register multiple types. Also, as I mentioned above, Ninject 2 has this sort of capability built-in -- it actually has the ability to scan directories, load assemblies and register modules. Very cool.</p>
<p>If your scenario is slightly different than what I've outlined, similar principles can likely be adapted.</p>
http://stackoverflow.com/questions/52092/why-the-claim-that-c-guys-dont-get-object-oriented-programming-vs-class-orien/52139#521399Answer by Peter Meyer for Why the claim that c# guys don't get object-oriented programming? (vs class-oriented)Peter Meyer2008-09-09T15:20:03Z2009-04-27T09:15:18Z<p>IMO, it's really overly defining "object-oriented", but what they are referring to is that Ruby, unlike C#, C++, Java, et al, does not make use of <em>defining</em> a class -- you really only ever work directly with objects. Conversely, in C# for example, you define <em>classes</em> that you then must <em>instantiate</em> into object by way of the new keyword. The key point being you must <em>declare</em> a class in C# or describe it. Additionally, in Ruby, <em>everything</em> -- even numbers, for example -- is an object. In contrast, C# still retains the concept of an object type and a value type. This in fact, I think illustrates the point they make about C# and other similar languages -- object <em>type</em> and value <em>type</em> imply a <em>type</em> system, meaning you have an entire system of <em>describing</em> types as opposed to just working with objects.</p>
<p>Conceptually, I think OO <em>design</em> is what provides the abstraction for use to deal complexity in software systems these days. The language is a tool use to implement an OO design -- some make it more natural than others. I would still argue that from a more common and broader definition, C# and the others are still <em>object-oriented</em> languages.</p>
http://stackoverflow.com/questions/786923/when-would-i-use-an-appdomain/786941#7869417Answer by Peter Meyer for When would I use an AppDomain?Peter Meyer2009-04-24T17:57:43Z2009-04-24T17:57:43Z<p>There are numerous uses. An secondary AppDomain can provide a degree of isolation that is similar to the isolation an OS provides processes.</p>
<p>One practical use that I've used it for is dynamically loading "plug-in" DLLs. I wanted to support scanning a directory for DLLs at startup of the main executable, loading them and checking their types to see if any implemented a specific interface (i.e. the contract of the plug-in). Without creating a secondary AppDomain, you have no way to unload a DLL/assembly that may not have any types that implement the interface sought. Rather than carry around extra assemblies and types, etc. in your process, you can create a secondary AppDomain, load the assembly there and then examine the types. When you're done, you can get rid of the secondary AppDomain and thus your types.</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit18ASP.Net MVC and nUnitPeter Meyer2008-08-21T20:43:29Z2009-04-23T19:13:26Z
<ul>
<li>I have nUnit installed.</li>
<li>I have VS2008 Team Edition installed.</li>
<li>I have ASP.Net MVC Preview 4 (Codeplex) installed.</li>
</ul>
<p>How do I make Visual Studio show me nUnit as a testing framework when creating a new MVC project? At this point I still only have the Microsoft Testing Framework as a choice. </p>
<p><strong>Update:</strong> I installed nUnit 2.5, but still with no success. From what I've found Googling, it would seem I need to <em>create</em> templates for the test projects in order for them to be displayed in the "Create Unit Test Project". I would have thought that templates be readily available for nUnit, xUnit, MBUnit, et. al. Also, it looks like I need to created registry entries. Anybody have any additional information?</p>
<p><strong>Update:</strong> I determined the answer to this through research and it's posted below. </p>
http://stackoverflow.com/questions/783011/linqtoxml-getting-elements-with-given-value/783053#7830531Answer by Peter Meyer for LinqToXML: Getting elements with given valuePeter Meyer2009-04-23T18:53:43Z2009-04-23T18:53:43Z<p>You should use <em>xml.Descendants</em> assuming you are querying from the document root. Also, I'd prefer using <em>string.Equals</em> over the <em>Equals</em> method called off the string returned by the <em>Value</em> property of the element (only as a matter of preference.) For example:</p>
<pre><code>var objects = from e in xml.Descendants("value")
where string.Equals(e.Value,
"foo",
StringComparison.OrdinalIgnoreCase)
select e.Parent;
</code></pre>
http://stackoverflow.com/questions/778877/resolve-type-ambiguity-when-referencing-more-than-one-webservice-in-c/778900#7789000Answer by Peter Meyer for Resolve Type Ambiguity When Referencing More Than One Webservice in C#Peter Meyer2009-04-22T19:50:09Z2009-04-23T14:09:34Z<p>It would seem as though you have imported the same WSDL twice -- or at least some of the types used by both are the same. You may be able to disambiguate between the two same-named types not importing both web reference namespaces or by using a namespace alias.</p>
<p>Could you post the actual code snippet and also indicate the URLs that you imported using "Add Web Reference"? Also, what version of Visual Studio are you using and what version of the .Net Framework are you targeting?</p>
<p><strong>EDIT -- Follow-up based on the information Peter provided in the comment</strong></p>
<p>I Examined both the URLs you posted, and just wanted to provide a little background. In deed the reason you first saw the error is that both WSDL imports specify the use of the same type, namely <em>MessageHeader</em>. Examining the top of each WSDL file:</p>
<p><a href="http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl" rel="nofollow">http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl</a></p>
<pre><code><definitions targetNamespace="https://webservices.sabre.com/websvc">
<types>
<xsd:schema>
<xsd:import namespace="http://www.opentravel.org/OTA/2002/11" schemaLocation="SessionCreateRQRS.xsd"/>
<xsd:import namespace="http://www.ebxml.org/namespaces/messageHeader" schemaLocation="msg-header-2_0.xsd"/>
...
</code></pre>
<p><a href="http://webservices.sabre.com/wsdl/sabreXML1.0.00/tpf/OTA%5FAirAvailLLS1.1.1RQ.wsdl" rel="nofollow">http://webservices.sabre.com/wsdl/sabreXML1.0.00/tpf/OTA_AirAvailLLS1.1.1RQ.wsdl</a></p>
<pre><code><definitions targetNamespace="https://webservices.sabre.com/websvc">
<types>
<xsd:schema>
<xsd:import namespace="http://webservices.sabre.com/sabreXML/2003/07" schemaLocation="OTA_AirAvailLLS1.1.1RQRS.xsd"/>
<xsd:import namespace="http://www.ebxml.org/namespaces/messageHeader" schemaLocation="msg-header-2_0.xsd"/>
...
</code></pre>
<p>The last line in each WSDL file shows the reason for your type name collision -- the same XSD file is imported by each WSDL file, obviously because both use the same type. When you create a web reference to each WSDL file, Visual Studio examines the WSDL and generates a class that matches the imported *msg-header-2_0.xsd* schema. </p>
<p>Unfortunately, Visual Studio can't tell that the schema in each separate WSDSL reference is really the same type, and so it dutifully imports each and generates a separate class for each. Although each of the classes generated share the same name, each is defined within it's own unique namespace that correlates to each of the WSDL files. </p>
<p>So, this is why the solution you accepted for your question works -- either specifying the full name of <em>one</em> the types works or using an alias to <em>one</em> of the types within <em>one</em> of the specific namespace.</p>
<p>Another solution would be to fix the two web references to share a single MessageHeader type. This could be done manually, however, you'd have to redo the manual edit each time you refreshed the web service reference, so I wouldn't recommend it. Also, it's probably a better idea to use the proper <em>MessageHeader</em> type defined for with each service, despite the fact that they're the same. So, I would create two <em>using</em> aliases if you assuming you were going to call both services from the same source file:</p>
<pre><code>using MessageHeader1 = WebApplication3.com.sabre.webservices1.MessageHeader;
using MessageHeader2 = WebApplication3.com.sabre.webservices2.MessageHeader;
</code></pre>
<p>I would use MessageHeader1 with whatever service you referenced under the namespace <em>WebApplication3.com.sabre.webservices1</em> and likewise, MessageHeader2 with the other.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/772210/how-to-load-an-xml-file-from-the-model-when-the-controllercontext-is-null-in-asp/772451#7724512Answer by Peter Meyer for How to load an xml file from the model when the ControllerContext is null in ASP.Net MVCPeter Meyer2009-04-21T12:57:42Z2009-04-21T12:57:42Z<p>I think the solution to your problem is a combination of what people have mentioned here. Override Initialize and load your XML document there. The Server property should be valid at that point. Also, use <em>Server.MapPath</em> to retrieve the resource from within your web site directory hierarchy.</p>
<pre><code>using System.Web.Mvc;
using Site1.Models;
namespace Site1.Controllers
{
[SkyArts.Models.Master]
public abstract class BaseController : Controller
{
protected override void Initialize(RequestContext rc)
{
base.Initialize(rc);
XDocument buttonsXmlDoc = XDocument.Load(
Server.MapPath("~/Content/Xml/Buttons.xml"));
}
}
}
</code></pre>
<p>Additionally, note that when calling Server.MapPath, use the application rooted path to the resource (i.e. begin the path with the tilde character "~") -- this is the reason you're seeing the error <em>Could not find a part of the path 'c:\windows\system32\inetsrv\Content\Xml\Buttons.xml'.</em> </p>
<p>When you don't use Server.MapPath, any relative file system paths are relative to the executing process, which in this case would be IIS. Calling Server.MapPath will translate the resource you've specified as relative to your web site's virtual directory hierarchy to a physical file system path.</p>
<p>As for your side issue regarding the location of the XML file, I would recommend that App_Data is used since files stored in that folder are not served when requested.</p>
http://stackoverflow.com/questions/755685/c-static-readonly-vs-const/755975#7559750Answer by Peter Meyer for C#: static readonly vs constPeter Meyer2009-04-16T12:48:41Z2009-04-16T12:48:41Z<p>My preference is to use <strong>const</strong> whenever I can, which as mentioned above is limited to literal expressions or something that does not require evaluation. </p>
<p>If I hot up against that limitation, then I fallback to <strong>static readonly</strong>, with one caveat. I would generally use a public static property with a getter and a backing <strong>private static readonly</strong> field as Marc mentions <a href="http://stackoverflow.com/questions/755685/c-static-readonly-vs-const/755693#755693">here</a>.</p>
http://stackoverflow.com/questions/752581/when-are-c-using-statements-most-useful/752610#7526109Answer by Peter Meyer for When are C# "using" statements most useful?Peter Meyer2009-04-15T16:41:57Z2009-04-15T17:50:06Z<p>The using construct enforces <em>deterministic</em> disposal -- i.e. release of resources. In your example above, yes, if you don't employ a "using" statement, the object will be disposed, but only if the recommended disposable pattern (that is, <em>disposing</em> of resources from a class finalizer, if applicable) has been implemented for the class in question (in your example, the Font class). </p>
<p>Additionally, underlying resources will only be released when the garbage collector decides to collect your out-of-scope Font object. A key concept in .Net programming (and most languages with a garbage collector) is that just because an object goes out of scope does not mean that it is finalized/released/destroyed, etc. Rather, the garbage collector will perform the clean-up at a time it determines -- not immediately when the object goes out of scope. </p>
<p>Finally, the using statement "bakes in" a try/finally construct to ensure that Dispose is called regardless of contained code throwing an exception. </p>
http://stackoverflow.com/questions/716308/mvc-membership-and-rc-1-0/716329#7163290Answer by Peter Meyer for MVC Membership and RC 1.0 ?Peter Meyer2009-04-04T02:01:12Z2009-04-04T02:01:12Z<p>Did you just try downloading the code and checking the MVC DLL bundled with it?</p>
<p>I did just that and found the version on System.Web.Mvc.dll is 1.0.40112.0. I believe this version is either RC1 or Beta.</p>
http://stackoverflow.com/questions/710519/inserting-increment-for-each-unique-value-in-sql/710616#7106160Answer by Peter Meyer for Inserting increment for each unique value in sql. Peter Meyer2009-04-02T16:55:00Z2009-04-02T16:55:00Z<p>My MySQL syntax is not very good, but assuming you've created your new table above, wouldn't something like this work?</p>
<pre><code>set @i = 0;
create temporary table t_widget_id
as
select distinct widgets, @i:=@i+1 as widget_id from widgets
insert into widget_new
select widgets.widgets,
t_widget_id.widget_id
from
widgets inner join
t_widget_id
on widgets.widgets = t_widget_id.widgets
drop table t_widget_id
</code></pre>
http://stackoverflow.com/questions/672121/does-asp-nets-blogengine-net-stack-up-to-wordpress/672146#6721460Answer by Peter Meyer for Does ASP.NET's BlogEngine.Net Stack Up to Wordpress?Peter Meyer2009-03-23T03:28:51Z2009-03-23T03:28:51Z<p>Wordpress is very slick. It's mature, has ton's of templates and plugins and the administrative tool is fantastic. Installation is simple -- even on IIS7/PHP.</p>
<p>I am primarily a .Net programmer, though I can work with PHP as well (I just don't care for it.) So, I'd like to say that BlogEngine.Net could "stack up", but I think from an operational perspective, Wordpress is still the leader.</p>
http://stackoverflow.com/questions/659341/the-provider-is-not-compatible-with-the-version-of-oracle-client/659462#6594621Answer by Peter Meyer for The provider is not compatible with the version of Oracle clientPeter Meyer2009-03-18T18:06:45Z2009-03-18T18:06:45Z<p>It would seem to me that though you have ODP with the Oracle Istant Client, the ODP may be trying to use the actual Oracle Client instead. Do you have a standard Oracle client installed on the machine as well? I recall Oracle being quite picky about when it came to multiple clients on the same machine.</p>
http://stackoverflow.com/questions/604814/asp-net-mvc-actionlinks-and-shared-hosting-aliased-domains/608203#6082031Answer by Peter Meyer for ASP.Net MVC ActionLink's and Shared Hosting Aliased DomainsPeter Meyer2009-03-03T21:11:31Z2009-03-03T21:11:31Z<p>I've looked at this over and over and can't come up with anything except that this is a by-product of some hosting providers. Drilling down through the MVC stack, I found that ActionLinks are ultimately created by getting the route virtual path and prefixing it with the HttpRequestContext.ApplicationPath. </p>
<p>On GoDaddy hosting (and others), even though you've defined a domain as mapping to a certain folder path beneath an already mapped domain, the application path that ends up in the HttpRequestContext is the path as if it were on your root domain. So, something real funky is going on there. This is evidenced if you turn on Tracing and look at the HTTP variables for a request using Trace.axd. In the example I gave in the question above, the HTTP_HOST would be listed as <strong>my.xyz.com</strong> for that "non-primary" domain. However, even though I am accessing something at the root of this domain, the SCRIPT_NAME, PATH_INFO and URL variables are all <strong>/_xyz.com/</strong>. This ends up propagating up to the links generated by the AjaxHelper (and HtmlHelper) ActionLink extension methods. </p>
<p>So, my total hack is as follows:</p>
<pre><code> public static class FixAliasedLinkHack {
public static string RemoveAlias(this string link, string alias) {
// Find the href param and replace ...
return link.Replace(alias, string.Empty);
}
public static string AutoRemoveAlias(this string link) {
var appRoot = HttpContext.Current.Request.ApplicationPath;
return appRoot != "/" ? link.RemoveAlias(appRoot) : link;
}
}
</code></pre>
<p>This is applied as such:</p>
<pre><code>Ajax.ActionLink(...).AutoRemoveAlias();
</code></pre>
<p>Lame? Absolutely... </p>
<p>I am going to leave this question open in hopes that somebody has a more elegant solution I'm just missing.</p>
http://stackoverflow.com/questions/32343/how-do-i-spawn-threads-on-different-cpu-cores/32477#324771Answer by Peter Meyer for How do I spawn threads on different CPU cores?Peter Meyer2008-08-28T14:49:52Z2009-02-20T00:52:26Z<p>In the case of managed threads, the complexity of doing this is a degree greater than that of native threads. This is because CLR threads are not directly tied to a native OS thread. In other words, the CLR can switch a <em>managed</em> thread from native thread to native thread as it sees fit. The function <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.beginthreadaffinity.aspx" rel="nofollow">Thread.BeginThreadAffinity</a> is provided to place a managed thread in lock-step with a native OS thread. At that point, you could experiment with using native API's to give the underlying native thread processor affinity. As everyone suggests here, this isn't a very good idea. In fact there is <a href="http://msdn.microsoft.com/en-us/library/ms686247.aspx" rel="nofollow">documentation</a> suggesting that threads can receive less processing time if they are restricted to a single processor or core.</p>
<p>You can also explore the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process(VS.80).aspx" rel="nofollow">System.Diagnostics.Process</a> class. There you can find a function to enumerate a process' threads as a collection of <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processthread(VS.80).aspx" rel="nofollow">ProcessThread</a> objects. This class has methods to set ProcessorAffinity or even set a <em>preferred</em> processor -- not sure what that is.</p>
<p>Disclaimer: I've experienced a similar problem where I thought the CPU(s) were under utilized and researched a lot of this stuff; however, based on all that I read, it appeared that is wasn't a very good idea, as evidenced by the comments posted here as well. However, it's still interesting and a learning experience to experiment.</p>
http://stackoverflow.com/questions/45202/ioc-container-configuration-registration1IoC Container Configuration/RegistrationPeter Meyer2008-09-05T03:51:57Z2009-02-09T05:26:29Z
<p>I absolutely need to use an IoC container for decoupling dependencies in an ever increasingly complex system of enterprise services. The issue I am facing is one related to configuration (a.k.a. registration). We currently have 4 different environments -- development to production and in between. These environments have numerous configurations that slightly vary from environment to environment; however, in all cases that <em>I can currently think of</em>, dependencies between components do not differ from environment to environment, though I could have missed something and/or this could obviously change. </p>
<p>So, the ultimate question is, does anybody have a similar experience using an IoC framework? Or, can anybody recommend one framework over another that would provide flexible registration be it through some sort of convention or simplified configuration information? Would I still be able to benefit from a fluent interface or am I stuck with XML -- I'd like to avoid XML-hell.</p>
<p><strong>Edit:</strong> This is a .Net environment and I have been looking at Windsor, Ninject and Autofac. They all seem to now support both methods of registration (fluent and XML), though Autofac's support for lambda expressions seems to be a little different than the others. Anybody use that in a similar multi-deployment environment?</p>
http://stackoverflow.com/questions/395779/what-is-the-most-efficient-way-to-perform-the-reverse-of-server-mappath-in-an-asp0What is the most efficient way to perform the reverse of Server.MapPath in an ASP.Net ApplicationPeter Meyer2008-12-28T03:45:51Z2008-12-28T04:01:47Z
<p>I am building an MVC application in which I am reading a list of files from the file system and I want to pass the relative URL to that file to the view, preferably prefixed with "~/" so that whatever view is selected cab render the URL appropriately. </p>
<p>To do this, I need to enumerate the files in the file system and convert their physical paths back to relative URLs. There are a few algorithms I've experimented with, but I am concerned about efficiency and minimal string operations. Also, I believe there's nothing in the .Net Framework that can perform this operation, but is there something in the latest MVC release that can?</p>
http://stackoverflow.com/questions/389133/how-do-you-truly-get-an-abstract-concept/389248#3892480Answer by Peter Meyer for How do you truly 'get' an abstract concept?Peter Meyer2008-12-23T15:58:28Z2008-12-23T15:58:28Z<p>It's tough to answer a question like this without fully understanding your situation, your personality, your training/education, etc. But, I can say that being able to effectively juggle tasks <em>should</em> improve with practice. For some people, I think it does not for whatever reason. </p>
<p>To give yourself the best shot, I would say that you thoroughly need to understand the underpinnings of the software down to a very low level -- not in excruciating detail, but with some degree of understanding. Again, I don't know what kind of background you have, but I've seen patterns with many programmers -- young and old alike. In both cases, I see a common thread of a lack of education about core computer science concepts -- things like data structures, algorithms. Experience with C and assembler or any language that gets you closer to the metal of the computer. What's this got to do with algorithms and enterprise architecture? Well, what I think it does is give you foundations on which you learn abstract building blocks. </p>
<p>I still remember an aha moment in college. I was taking a Microcomputer Architecture class which was a class that more EE majors would probably take. We learned about computer electronics -- flip-flops, logic gates, the magic of the transistor, etc. I was lost all semester. Then towards the end, things wrapped up -- we learned about instruction sets and opcodes and how these flowed through a mini-computer's electronics, so to speak. </p>
<p>For some reason, things fell together -- assembly language down to the metal of the computer. I had this physical basis all of a sudden that underpinned all this abstractstuff I learned in <strong>ahem</strong> Pascal and Modula2 ... (younger programmers, refer to wikipedia) ... anyway, I think that all this has helped me through the years have a better ability to build abstract concepts on top of that. Maybe you don't need to go down to flip-flops and gates, but understanding basic data structures and patterns can start to go a long way. </p>
<p>I said above that I saw this lacking younger and older programmers alike. In younger cases, they've lacked education in these underpinnings. In older cases, they may have a good knowledge of these underpinnings, but have failed to continually educate themselves and newer techniques and practices.</p>
<p>To be sure, there is no silver bullet answer that can get you where you want to be. Educate yourself, practice, and continue asking questions. </p>
http://stackoverflow.com/questions/16550/best-net-build-tool/16564#16564Comment by Peter Meyer on best .net build toolPeter Meyer2009-11-25T14:33:26Z2009-11-25T14:33:26ZI'll check it out. I've thought a number of times about templating the NAnt script, but haven't gotten around to it. The biggest pain point in our process is the tedious copy/paste/edit cycle to get a new project configured for build. It's easy because we have well defined conventions now, but, as I said, tedious ... Thanks for the info.http://stackoverflow.com/questions/1719249/error-with-accountcontroller-and-ninject-2-and-asp-net-mvc-2-preview-2/1723565#1723565Comment by Peter Meyer on Error with AccountController and Ninject 2 and ASP.NET MVC 2 Preview 2Peter Meyer2009-11-12T16:41:12Z2009-11-12T16:41:12ZYeah, I played around quite a while with that one experimental branch until I found it on github, too. Good luck!http://stackoverflow.com/questions/1719249/error-with-accountcontroller-and-ninject-2-and-asp-net-mvc-2-preview-2/1722392#1722392Comment by Peter Meyer on Error with AccountController and Ninject 2 and ASP.NET MVC 2 Preview 2Peter Meyer2009-11-12T16:35:56Z2009-11-12T16:35:56ZAs of this post and comment, this link references Ninject 1.x documentation. Activation scope is controlled differently in Ninject 2.http://stackoverflow.com/questions/1261357/ninject-kernel-binding-overrides/1287211#1287211Comment by Peter Meyer on Ninject kernel binding overridesPeter Meyer2009-09-10T12:23:57Z2009-09-10T12:23:57ZI actually agree with you. In most of my own unit tests, I'm doing "manual" injection -- which sounds too fancy for simply passing a mock to a constructor! I've used DI in unit tests in some isolated, specific cases, but certainly a minority of instances.http://stackoverflow.com/questions/427287/ninject-on-asp-net-session-stateComment by Peter Meyer on Ninject on asp.net Session statePeter Meyer2009-08-24T19:16:56Z2009-08-24T19:16:56ZWhat version of Ninject are you planning on using?http://stackoverflow.com/questions/1320944/ninject-aop-getting-method-parameters-from-intercepted-methodComment by Peter Meyer on Ninject AOP - getting method parameters from intercepted methodPeter Meyer2009-08-24T19:12:53Z2009-08-24T19:12:53ZAssume you are using Ninject 1.x ?http://stackoverflow.com/questions/962690/does-anyone-know-of-a-good-guide-to-get-ninject-2-working-in-asp-net-mvc/1265797#1265797Comment by Peter Meyer on Does anyone know of a good guide to get Ninject 2 working in ASP.NET MVC?Peter Meyer2009-08-15T00:48:52Z2009-08-15T00:48:52ZThat's how I interpreted it. But, that's a good question.http://stackoverflow.com/questions/1258498/ninject-equivalent-of-unity-registerinstance-method/1259889#1259889Comment by Peter Meyer on Ninject equivalent of Unity RegisterInstance methodPeter Meyer2009-08-14T21:11:56Z2009-08-14T21:11:56ZYeah, looks good -- haven't used it myself yet, but looking to do so at soon.http://stackoverflow.com/questions/962690/does-anyone-know-of-a-good-guide-to-get-ninject-2-working-in-asp-net-mvc/1265797#1265797Comment by Peter Meyer on Does anyone know of a good guide to get Ninject 2 working in ASP.NET MVC?Peter Meyer2009-08-13T13:21:32Z2009-08-13T13:21:32ZThis is still based on deriving from NinjectHttpApplication.http://stackoverflow.com/questions/1245517/ninject-bindingComment by Peter Meyer on Ninject BindingPeter Meyer2009-08-10T15:44:19Z2009-08-10T15:44:19ZAlso, what version of Ninject are you using?http://stackoverflow.com/questions/1245517/ninject-bindingComment by Peter Meyer on Ninject BindingPeter Meyer2009-08-10T13:41:40Z2009-08-10T13:41:40ZDo the projects in the solution contain both the interfaces and concrete classes? Are you looking to bind them in a consuming solution/project or within this solution itself?http://stackoverflow.com/questions/1192004/specific-down-sides-to-many-small-assemblies/1218220#1218220Comment by Peter Meyer on Specific down-sides to many-'small'-assemblies?Peter Meyer2009-08-06T11:58:10Z2009-08-06T11:58:10ZThis is a great analysis. Thanks for doing the research.http://stackoverflow.com/questions/1230692/ninject-not-firing/1234097#1234097Comment by Peter Meyer on Ninject not firing?Peter Meyer2009-08-06T11:53:28Z2009-08-06T11:53:28ZYou're welcome! http://stackoverflow.com/questions/604814/asp-net-mvc-actionlinks-and-shared-hosting-aliased-domainsComment by Peter Meyer on ASP.Net MVC ActionLink's and Shared Hosting Aliased DomainsPeter Meyer2009-08-03T20:39:07Z2009-08-03T20:39:07ZNo kidding. It's a royal pain and really, there's no good reason for it.http://stackoverflow.com/questions/1192004/specific-down-sides-to-many-small-assemblies/1215043#1215043Comment by Peter Meyer on Specific down-sides to many-'small'-assemblies?Peter Meyer2009-08-01T03:49:09Z2009-08-01T03:49:09ZAgreed. That point wasn't clear from my diatribe, though I tried to express it -- I'm all for using multiple smaller assemblies as long as it makes sense. In other words what goes where can not be arbitrary but rather well planned along architectural, maintenance and reuse concerns.