I recently discovered a problem when using WCF in a self-hosted setup that I had never encountered before:
I was using the following binding syntax in my module:
this.Bind<IMyService, MyServiceImpl>();
As it turned out, this was causing a strange "Object reference not set to instance of an object". Changing the syntax to :
this.Bind<IMyService>().To<MyServiceImpl>().InTransientScope();
... solved the problem.
No comments:
Post a Comment