Maxim Nesen
Maxim Nesen
There is a valid ECA on file for [email protected]. But check fails for some reason.
@nddipiazza if you previously compiled the branch (using JDK 8 for example) and now it does not pass again you can try to remove all target/* folders and compile it...
Resolved by #665
as per [3.1 RESTful API requirement](https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1.html#exceptionmapper) each implementation must have a default exception mapper: ``` A JAX-RS implementation MUST include a default exception mapping provider that implements ExceptionMapper and which...
`jakarta.ws.rs` should be `3.1.0`. Please check if it's not mistyped in your report or in the app (which is the worst case).
Thanks for the correction. Regarding the issue itself, Jersey already runs within at least a Glassfish OSGi environment, and there are no issues with it. We have never tried it...
> At the moment I am puzzled on how to fix this - as it would involve some weird classloading workarounds. What comes to my mind is just forking the...
@col-panic - thanks for providing those patches and related info. Regarding the issue you are submitting to the jax-ws-api issue tracker - that is wrong API. You should submit the...
yes, those URLs and descriptions you are providing: > * https://github.com/jakartaee/jax-ws-api = `jakarta.xml.ws-api` i.e. JAX-WS(Java API for XML Web Services) > * https://github.com/jakartaee/rest = `jakarta.ws.rs-api` i.e. JAX-RS (Java API for...
I suspect this happens due to [this](https://github.com/eclipse-ee4j/jersey/blame/aafb9c413760cea7ba5e29ab23c2a555ffb25e7c/containers/jersey-servlet-core/src/main/java/org/glassfish/jersey/servlet/WebComponent.java#L427) change. When it is just `requestContext.setEntityStream(servletRequest.getInputStream());` the given reproducer works just fine. BTW, the reproducer is perfect, having it I'm able to investigate...