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=14293>. 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=14293 GetMethod_HEADTest test failed. Summary: GetMethod_HEADTest test failed. Product: Tomcat 4 Version: 4.1.12 Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Connector:Coyote JK 2 AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The watchdog test makes a HEAD request but Tomcat (using mod_jk 1.2.0). The result is: +++ jakarta@vtxclere:~/jakarta-tomcat-4.1.12 > telnet localhost 443 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. HEAD /servlet-tests/GetMethod_HEADTest HTTP/1.0 HTTP/1.1 200 Date: Wed, 06 Nov 2002 09:12:04 GMT Server: Apache/1.3.27 (Unix) mod_jk/1.2.0 status: GetMethod_HEADTest PASSED Content-Length: 15 Connection: close Content-Type: text/plain Arbitrary text Connection closed by foreign host. +++ That is not Ok, HEAD should not contain data. The servlet code that causes the error is the following: +++ public void service ( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException { PrintWriter out = response.getWriter(); out.println( "Arbitrary text" ); +++ -- To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>