I'm investigating in using Microsoft's WCF WebHttp Services
for creating a RESTful API. In the past there has been the WCF REST Starter Kit
for .NET 3.5, which now seem to have been replaced by the WCF REST Service Template 40
in .NET 4.
Of course I want to use Spring.NET's DI, but I can't seem to find any ressources on the web explaining how to successfully integrate Spring.NET
into WCF WebHttp Services
.
I do know the quite "interesting" way to get Spring into my conventional WCF Services, but does anyone know how to integrate Spring.NET with WCF WebHttp Services
?
Some details, to whose are interested:
- In
WCF WebHttp Services
I have aglobal.asax
just like in MVC, where I can register routes and stuff. - This
Global
inherits fromHttpApplication
like the good ol'SpringMvcApplication
does. A route looks a bit different though:
RouteTable.Routes.Add(new ServiceRoute("MyService", new WebServiceHostFactory(), typeof(MyService)));
I would assume two possible ways for hooking Spring into that:
- Let
Global
inherit from some Spring class instead ofHttpApplication
- When registering the route, use a custom
ServiceHostFactory
provided bySpring.NET
Does anyone know a ressource or some additional documentation on achieving this? Has anyone done this already?
I have just had to do the same thing myself, I had to extend the web api http host factory.
find the details here: Spring.NET WCF Web API
But in short do this:
and in your web.config: