DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10789>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10789 Setting DirectoryIndex of index.jsp does not get served by jk2 ------- Additional Comments From [EMAIL PROTECTED] 2002-07-17 05:32 ------- >From mod_jk2.c, function jk2_handler, line 536: ------------------------------- if(uriEnv==NULL || strcmp(r->handler,JK_HANDLER)!= 0 ) return DECLINED; ------------------------------- which kind of boils down to the same thing as in bug 9913, except this is for mod_jk2, as compared to mod_jk. I guess this fix here would be (following the logic of 9913 fix): ------------------------------- if(uriEnv==NULL || (strcmp(r->handler,JK_HANDLER) && strcmp(r->handler,DIR_MAGIC_TYPE))) return DECLINED; ------------------------------- Bojan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>