Ok I after I got some mails with responses to this topic I got jsp working with apache 2.2.
I did not need to modify any configuration files! I just needed to start the tomcat service with pfexec /usr/apache/tomcat/bin/startup.sh ( use pfexec /usr/apache/tomcat/bin/shutdown.sh to stop tomcat) I got this commands from here http://wikis.sun.com/display/WebStack/Web+Stack+Getting+Started+Guide#WebStackGettingStartedGuide-JavaandWebApplicationDeployment then I restarted apache svcadm restart apache22 There is a configuration file for the tomcat-apache connector mod_jk that can be found here: /etc/apache2/2.2/conf.d/jk.conf It contains a single line JkMount /servlets-examples/* worker1 (Explained in detail here: http://tomcat.apache.org/connectors-doc/generic_howto/quick.html ) So I browsed to http://host/servlets-examples/ and the serverlet example page was displayed in my browser window. -- This message posted from opensolaris.org