I'm trying to get a simple hello world jsp page to be served by the servlet daemon and was wondering how I need to modify the configuration files to do this. I've created a new directory under httpd called custom (iw-home\httpd\custom) and placed a simple jsp page inside (hello.jsp). I want this page to be accessible at either
http://servername/custom/hello.jsp or
http://servername/iw/custom/hello.jsp.
How do I modify the template config files under \iw-webd\conf\? Here are the modifications I made and I'm not having any success with the redirect module and tomcat.
FILE: httpd.conf.template
#<IfModule mod_alias.c>
.....
Alias /iw "__IW_TS_HOME__/httpd/iw/"
Alias /iw/custom/ "__IW_TS_HOME__/httpd/custom/"
#</IfModule>
FILE: rewrite.conf.template
....
#
# Send the webapps off to servet engine, but not the static files
#
RewriteMap urlencode int:escape
RewriteCond %{REQUEST_URI} ^/iw/(webdesk|tsadmin|ddui|custom)(/.*)?$
...
Is there anything else I have to modify? Am I missing something?