StandaloneTypically java-based web servers where the main web serverand the servlet container are integral parts of the same program. An example is Tomcat running by itself.
|
In-processThe main web server and the servlet container are different programs,but the container runs within the address space of the main server as a plug-in. An example is Tomcat running inside Apache Web Server.
| |||||||||||||||||||||
Out-of-processThe main web server and the servlet container are different programs and runin separate processes. A plug-in is used to communicate with the servlet container.
An example is Tomcat running as a separate process configured to receive
| ||||||||||||||||||||||