it came too late, sorry.
Jersey 2.22.2 was released last week, I'm currently in process of
updating webpage. After that is done and synced to java.net, I'll
send an announcement.
Regards,
Pavel
On 24/02/16 18:25, Robert DiFalco
wrote:
It would be great if the next version of Jersey
could fix the issue of a null description and cause for a
ResponseProcessingException. It's a simple fix on line 869 of
JerseyInvocation.java. Basically in the case where ex.getCause()
is null you will end up getting a ResponseProcessingException
that can NEVER be tracked down. The easiest fix is to just
change ex.getCause() to ex below. Of if you want to get fancy
(ex.getCause() == null ? ex : ex.getCause()).
} catch (final ProcessingException ex) {
throw new ResponseProcessingException(new InboundJaxrsResponse(response, scope), ex.getCause());
} catch (final WebApplicationException ex) {