User-372452417 posted
We are planning to use EXTJS framework for presentation layer which would be calling WCF based Rest Service or WebAPI Service(Http services) . My requirement is to have 3 tier architecture (physical separation) so my understanding is that we need to put
Service layer on another server and host services on IIS there to be consumed by presentation layer hosted on different IIS server. I am getting few doubts regarding this architecture.
- Should we use Webform approach to host EXTS libraries as in this case ASP.Net MVC would be irrelevant considering that all the rendering logic is done by EXTJS.
- If we host services on another server which service authentication should be used .In this case I think we can’t use Form Authentication as the web and service are hosted separately.
- Is it really required to host Service layer on another server to make it three tier ,considering the third tier is the Database server. Isn’t EXTJS running on rendering on browser technically a tier?