You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DefaultServlet.doGet method is missing code to handle an INCLUDE. For an INCLUDE, the resource to be served is not found in the request (as is the case for REQUEST and FORWARD) but rather found in the request attributes prefixed with jakarta.servlet.include.:
Note that our DefaultServletTest.testIncludedDifferentWelcomeBase unit test has been disabled with comment "Not working as RequestDispatcher.include() isn't behaving as expected".
The text was updated successfully, but these errors were encountered:
janbartel
added
Bug
For general bugs on Jetty side
TCK
For various Specification Test Compatibility Kits (eg: Servlet, WebSocket, HTTP/2, etc)
Jetty 12
labels
Dec 19, 2022
jetty-12
The
DefaultServlet.doGet
method is missing code to handle anINCLUDE
. For anINCLUDE
, the resource to be served is not found in the request (as is the case forREQUEST
andFORWARD
) but rather found in the request attributes prefixed withjakarta.servlet.include.
:Note that our
DefaultServletTest.testIncludedDifferentWelcomeBase
unit test has been disabled with comment"Not working as RequestDispatcher.include() isn't behaving as expected"
.The relevant TCK test is:
https://github.com/jakartaee/platform-tck/blob/master/src/com/sun/ts/tests/servlet/spec/multifiltermapping/URLClient.java#L249
The text was updated successfully, but these errors were encountered: