tags:

views:

14

answers:

1

Is it existing some module for jsp(java server page) like (mod_python, mod_asp, mod_perl,...) for apache2 on windows. Without installing another web server.

A: 

You at least need a JSP/Servlet container on top of Apache HTTPD, for example Apache Tomcat. Apache HTTPD can be connected to Apache Tomcat using mod_jk.

Apache Tomcat in turn can also be used as a webserver, but that's not its primary purpose. With the mod_jk you can just serve the JSP/Servlet resources from Apache Tomcat through Apache HTTPD.

BalusC