I am trying to access a jsp page. The jsp page serves fine when I use port 8080.
However, the IIS does not serve the page. I am getting following in the log.
[Tue Jan 13 13:14:58 2004] [jk_isapi_plugin.c (555)]: HttpFilterProc started
[Tue Jan 13 13:14:58 2004] [jk_isapi_plugin.c (600)]: In HttpFilterProc Virtual Host
redirection of /127.0.0.1/idm/ui/ping.jsp
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (368)]: Attempting to map URI
'/127.0.0.1/idm/ui/ping.jsp'
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (456)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Jan 13 13:14:58 2004] [jk_isapi_plugin.c (606)]: In HttpFilterProc test Default
redirection of /idm/ui/ping.jsp
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (368)]: Attempting to map URI
'/idm/ui/ping.jsp'
[Tue Jan 13 13:14:58 2004] [jk_uri_worker_map.c (391)]:
jk_uri_worker_map_t::map_uri_to_worker, Found a context match jboss -> /idm/
[Tue Jan 13 13:14:58 2004] [jk_isapi_plugin.c (625)]: HttpFilterProc
[/idm/ui/ping.jsp] is a servlet url - should redirect to jboss
[Tue Jan 13 13:14:58 2004] [jk_isapi_plugin.c (647)]: HttpFilterProc check if
[/idm/ui/ping.jsp] is points to the web-inf directory
My workers.properties file has following.
worker.list=jboss
#
#------ AJP13 Workers definitions ------------------------------
#
#
# Server iPAS.Server.Default
#
worker.jboss.port=8009
worker.jboss.host=127.0.0.1
worker.jboss.type=ajp13
My uriworkermap.properties file has following.
# console
/jmx-console/*=jboss
/jmx-console/=jboss
/jmx-console*=jboss
# idm
/idm/*=jboss
/idm/=jboss
/idm*=jboss
Any suggestions would be welcome. Thanks.
Gs