What separates one tier from another in the context of n-tiered architecture?
Location: http://www.jguru.com/faq/view.jsp?EID=128826 Created: Aug 16, 2000 Modified: 2000-10-13 08:54:19.448 Author: John Kroubalkian (http://www.jguru.com/guru/viewbio.jsp?EID=1461) It depends on the application. In a web application, for example, where tier 1 is a web-server, it may communicate with a tier 2 Application Server using RMI over IIOP, and subsequently tier 2 may communicate with tier 3 (data storage) using JDBC, etc. Each of these tiers may be on separate physical machines or they may share the same box. The important thing is the functionality at each tier. • Tier 1 – Presentation – should be concerned mainly with display of user interfaces and/or data to the client browser or client system. • Tier 2 – Application – should be concerned with business logic • Tier 3+ – Storage/Enterprise Systems – should be focused on data persistence and/or communication with other Enterprise Systems.