2015-07-23 11:32 GMT+03:00 Rahul Kumar Singh <[email protected]>: > Dear Christopher, > > On further debugging, I found out the difference is seen between 6.0.32 (same > behavior as in 6.0.28 reported earlier) and 6.0.33 (same as in 7.0.54 > reported earlier ) I could not figure out which change ( as mentioned in link > https://tomcat.apache.org/tomcat-6.0-doc/changelog.html ) has caused this > difference. > > Step to reproduce it? > 1. Untar tomcat versions(Tomcat V6.0.32 and Tomcat V6.0.33) > 2. Enable access log by uncommenting 'AccessLogValve' in conf/server.xml > as shown below > > <Valve className="org.apache.catalina.valves.AccessLogValve" > directory="${catalina.base}/logs" > prefix="localhost_access_log." suffix=".txt" pattern="common" > resolveHosts="false"/> > > 3. Deploy a simple web application (login.jsp) in Tomcat. > // login.jsp in tomcat > <html> > <body> > <% > String str = request.getRequestURI(); > System.out.println(str); > out.println(str); > %> > </body> > </html> > > 4. Start tomcat > 5. Run client wget to execute the login.jsp > 6. View access log file entry
Thank you for version numbers. This is expected behaviour. I added comments on the history of this change here: https://bz.apache.org/bugzilla/show_bug.cgi?id=51833 Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
