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=5030>.
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=5030

MountJk /blah/*.jsp doesn't understand .jsp;jsessionid=

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME



------- Additional Comments From [EMAIL PROTECTED]  2001-11-26 05:18 -------
The following code in jk_uriworker_map.c near the beginning of map_uri_to_worker
removes the ";jsessionid" from the URI:

        char *clean_uri=NULL;
        char *url_rewrite = strstr(uri, JK_PATH_SESSION_IDENTIFIER);
        
        if(url_rewrite) {
            clean_uri = jk_pool_strdup(&uw_map->tp,uri);
            url_rewrite = strstr(clean_uri, JK_PATH_SESSION_IDENTIFIER);
            *url_rewrite = '\0';
            uri = clean_uri;
        }

With Apache 1.3.22 + mod_jk + Tomcat 3.3, I can successfully execute the
"security" example in the examples webapp with cookies turned off.  If your
mod_jk is up to date, the cause of the problem isn't that mod_jk doesn't
understand ";jsessionid".  Reopen with more details if there is still a
problem.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to