Maxim Nesen
Maxim Nesen
the current state of my investigation is, that we cannot eliminate the fact that Jersey sometimes wraps the original request's stream into the ``PushbackInputStream`` to determine if the stream is...
I think it is fixed by #5806. Once it's merged I can confirm that.
probably we should check the list of header values not to be NULL as well... ``` final List authHeaders = response.getHeaders().get(HttpHeaders.WWW_AUTHENTICATE); if (authHeaders == null || authHeaders.stream() .noneMatch(h -> h...
@ychernysh, I've created the #5884 PR based on your patch. Feel free to post any notes to it.
Double-check the imports, for example, if you use ``jakarta.inject.Singleton.class`` vs ``javax.inject.Singleton.class``. Otherwise, provide more info about the issue. The current report is not complete - no imports are visible, stack-trace...
Thanks for the additional information. Seen the imports: ``` import javax.inject.Inject; import javax.inject.Singleton; ``` should be replaced to ``` import jakarta.inject.Inject; import jakarta.inject.Singleton; ``` and check if the related dependency...
you can try marking the class directy by annotation: ``` @Immediate @jakarta.inject.Singleton public class I18NMessages { // class implementation } ``` and then register it as a singleton within the...
if you run this on Tomcat that might be caused by any previously missing dependency (activation, jaxb etc). You shall either bundle all required dependencies inside your WAR or put...
@namedgraph actually it can be related to dependencies (I was just fixing that in Tomcat environment when I was writing my previous answer). When you deploy Jersey dependent app inside...
@ychernysh - nice catch. However, this happens only for JDK 11. So, there are 2 options - either exclude the test for that JDK (as they say - no test...