I would like to ask for solution on this scenario:
- I have ASP.NET MVC 3 app
- I need to have pluging availability to this app (client request is going to server and according to url router to proper plugin which returns the View as a result), routing helps me to decide which plugin is for use by operation name. Each plugin has own database for operations.
- I need wcf service which will be upon the asp.net app and will be consuming the request for data (View) mined from concrete plugin
Any idea how to handle it?