Christian Kaltepoth

Results 179 comments of Christian Kaltepoth

I agree that there seems to be way to fix `equals()` (or am I missing something). Therefore, I'm fine with (1) and (2) proposed in the original issue description. Anyone...

> We could either mark the _correct_ converter with an annotation having its type as an attribute I don't think that this would work well for generic types. > or...

To be honest, I like how JAX-RS is currently handling this case. Throwing unchecked exceptions from a JAX-RS component is treated as an "error" and therefore wrapping the error in...

Thanks for explaining your use case. Let me share a few thoughts. I wonder if it wouldn't make more sense to implement this in a CDI interceptor. Something like: ```java...

Looks like a Jersey and not a spec issue. So please file a corresponding issue here: https://github.com/eclipse-ee4j/jersey/issues

Ok, thanks for the explanation. I'm not super familiar with OSGi. So do you think that the manifest of the JAX-RS API needs to be updated for this to work...

IMO the default media type of `application/octet-stream` is a great choice and makes sense to me. I don't fully understanding the restriction to `text/plain` for boolean, character and number as...

@spericas Thanks for your reply. Section 3.8 also states: > Note that the above renders a response with a default media type of ‘application/octet-stream’ when a concrete type cannot be...

What about [this paragraph in section 3.2](https://github.com/eclipse-ee4j/jaxrs-api/blame/master/jaxrs-spec/src/main/asciidoc/chapters/resources/_resource_field.adoc#L72-L83)? ``` A `WebApplicationException` thrown during construction of field or property values using any of the 5 steps listed above is processed directly as...