servlet icon indicating copy to clipboard operation
servlet copied to clipboard

Jakarta Servlet

Results 139 servlet issues
Sort by recently updated
recently updated
newest added

Doesn't mandate any new behaviour, just opens the door for containers that want to to use relative redirects while remaining specification compliant.

* @implSpec The default implementation returns false. * * @return a boolean whether trailer fields are ready to read * * @since Servlet 4.0 */ default public boolean isTrailerFieldsReady() {...

challenge

**Challenged Tests:** [com.sun.ts.tests.servlet.api.jakarta_servlet_http.httpservletrequest.URLClient#doHeadTest](https://github.com/eclipse-ee4j/jakartaee-tck/blob/master/src/com/sun/ts/tests/servlet/api/jakarta_servlet_http/httpservletrequest/URLClient.java#L745) **TCK Version:** Jakarta EE Platform TCK 10.0.0 **Tested Implementation:** Open Liberty **Description:** The doHeadTest performs a GET request and a HEAD request and proceeds to verify that...

accepted
challenge

**Challenged Tests:** [com.sun.ts.tests.servlet.api.jakarta_servlet_http.cookie.URLClient#setMaxAgePositiveTest](https://github.com/eclipse-ee4j/jakartaee-tck/blob/10.0.x/src/com/sun/ts/tests/servlet/api/jakarta_servlet_http/cookie/URLClient.java#L294) [com.sun.ts.tests.servlet.pluggability.api.jakarta_servlet_http.cookie.URLClient#setMaxAgePositiveTest](https://github.com/eclipse-ee4j/jakartaee-tck/blob/10.0.x/src/com/sun/ts/tests/servlet/pluggability/api/jakarta_servlet_http/cookie/URLClient.java#L331) **TCK Version:** Jakarta EE Platform TCK 10.0.0 **Tested Implementation:** Open Liberty **Description:** We raised a [challenge](https://github.com/jakartaee/servlet/issues/378) for this test in the EE 9.0.x timeframe, and this...

accepted
challenge

Unlike HTTP/1 it is possible for a HTTP/2 server to know if a connection has failed or if an individual stream has been reset before normal completion. This gives the...

Enhancement

RFC 5789 defines the method "PATCH". [http://tools.ietf.org/html/rfc5789](http://tools.ietf.org/html/rfc5789) Its semantics seem similar to POST or PUT in that it provides content to the server. However, section 3, pg 24 does not...

The following Servlet 6.0 issue removed this restriction from a number of getter methods: https://github.com/jakartaee/servlet/issues/416. However, the following getter methods still throw an UnsupportedOperationException: 1. https://jakarta.ee/specifications/servlet/6.0/apidocs/jakarta.servlet/jakarta/servlet/servletcontext#getServletRegistration(java.lang.String) 2. https://jakarta.ee/specifications/servlet/6.0/apidocs/jakarta.servlet/jakarta/servlet/servletcontext#getServletRegistrations() 3. https://jakarta.ee/specifications/servlet/6.0/apidocs/jakarta.servlet/jakarta/servlet/servletcontext#getFilterRegistration(java.lang.String)...

https://www.rfc-editor.org/rfc/rfc9110.html#name-trace The requirement was added in RFC 7231. It is not present in RFC 2616.

Information that is commonly needed from [`HttpServletRequest`](https://docs.oracle.com/javaee/6/api/index.html?javax/servlet/http/HttpServletRequest.html) is the URL or URI in its complete form. But currently, there is no such feature in Servlet, which raises a lot of...

Enhancement