DO NOT REPLY [Bug 20853] - JSP responds to TRACE method in the same way as to GET method.

2003-12-07 Thread bugzilla
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=20853.
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=20853

JSP responds  to TRACE method in the same way as to GET method.

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2003-12-07 23:40 ---
I'm the first to admit that this is a bug in the JSP spec.  However, it's still 
in the JSP 2.0 spec (which is what I was waiting on :).  Since there is 
no 'clarification' from later JSP specs, I can't justify Tomcat implementing 
this in violation of the spec.  The handling of TRACE currently has to be left 
to the JSP page author.

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



DO NOT REPLY [Bug 20853] - JSP responds to TRACE method in the same way as to GET method.

2003-06-19 Thread bugzilla
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=20853.
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=20853

JSP responds  to TRACE method in the same way as to GET method.





--- Additional Comments From [EMAIL PROTECTED]  2003-06-19 07:39 ---
I see. It seams application developers ( including me ) have to take care about
it in some way.
I also tried to place the scriptlet below on top of the JSP:

% if (TRACE.equalsIgnoreCase(request.getMethod())) {
  doTrace(request, response);
  return;
} %

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



DO NOT REPLY [Bug 20853] - JSP responds to TRACE method in the same way as to GET method.

2003-06-18 Thread bugzilla
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=20853.
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=20853

JSP responds  to TRACE method in the same way as to GET method.





--- Additional Comments From [EMAIL PROTECTED]  2003-06-18 07:32 ---
This one is somewhat problematical with the spec.  The JSP-1.1 Spec strongly 
suggests that the _jspservice method should be invoked from the Servlet.service 
method (which would forbid the container to support HEAD/TRACE/etc).  

While I think about it, I'm going to leave this open.  However, I don't really 
see that much room in the spec for creative interpretations.  The likely 
result of this bug is INVALID.

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



DO NOT REPLY [Bug 20853] - JSP responds to TRACE method in the same way as to GET method.

2003-06-18 Thread bugzilla
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=20853.
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=20853

JSP responds  to TRACE method in the same way as to GET method.





--- Additional Comments From [EMAIL PROTECTED]  2003-06-18 07:39 ---
I forgot to mention that you are free to use the
   [EMAIL PROTECTED] extend=com.myfirm.mypackage.MyJspPage %
which extends HttpServlet.  This is what I'm currently using.

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