|
JCP web page
Hi Alessio, the migration is still in progress, please be patient. We don't have email archives ready (yet), the issues have been migrated to https://github.com/jax-rs/api/issues (as already stated).
Hi Alessio, the migration is still in progress, please be patient. We don't have email archives ready (yet), the issues have been migrated to https://github.com/jax-rs/api/issues (as already stated).
|
By
Pavel Bucek
· #19
·
|
|
ClientBuilder#executorService
Dear experts, please let me know if you find anything wrong with following statements: on Java EE container: - JAX-RS client will use ManagedExecutorService for async/reactive calls unless set explici
Dear experts, please let me know if you find anything wrong with following statements: on Java EE container: - JAX-RS client will use ManagedExecutorService for async/reactive calls unless set explici
|
By
Pavel Bucek
· #21
·
|
|
ClientBuilder#executorService
Hello, good question, thanks. Managed executor service references JSR 236 and I'd expect that when not present, the jndi lookup described in the spec would return null and jax-rs implementation will t
Hello, good question, thanks. Managed executor service references JSR 236 and I'd expect that when not present, the jndi lookup described in the spec would return null and jax-rs implementation will t
|
By
Pavel Bucek
· #23
·
|
|
Providers ordering
Dear experts, there is couple of filed issues related to provider ordering, namely: https://github.com/jax-rs/api/issues/538 https://github.com/jax-rs/api/issues/537 We already do have them implemente
Dear experts, there is couple of filed issues related to provider ordering, namely: https://github.com/jax-rs/api/issues/538 https://github.com/jax-rs/api/issues/537 We already do have them implemente
|
By
Pavel Bucek
· #24
·
|
|
Returning CompletionStage from the resource method
Dear experts, as we already stated, we'd like to support returning CompletionStage from the resource mehod, corresponding spec issue is here: https://github.com/jax-rs/api/issues/551 The only open iss
Dear experts, as we already stated, we'd like to support returning CompletionStage from the resource mehod, corresponding spec issue is here: https://github.com/jax-rs/api/issues/551 The only open iss
|
By
Pavel Bucek
· #25
·
|
|
Providers ordering
Hi Christian, see chapter 4.2.4: Which i s the base of what I mentioned - there is one issue though - this is only about entity providers, not about ExceptionMappers, which are covered by chapter 4.3.
Hi Christian, see chapter 4.2.4: Which i s the base of what I mentioned - there is one issue though - this is only about entity providers, not about ExceptionMappers, which are covered by chapter 4.3.
|
By
Pavel Bucek
· #29
·
|
|
Built-in proxy support in Client API?
Hi Dennis, thanks for the pull request; please don't hijack the topic - this one is about client proxy support. Feel free to start a new thread. Regards, Pavel
Hi Dennis, thanks for the pull request; please don't hijack the topic - this one is about client proxy support. Feel free to start a new thread. Regards, Pavel
|
By
Pavel Bucek
· #40
·
|
|
Returning CompletionStage from the resource method
Hi Sergey, ad 1) the response processing will be done on the caller (completer) thread (so, completionStage#whenComplete(..), not #whenCompleteAsync(..)), simply because it works in a same way as when
Hi Sergey, ad 1) the response processing will be done on the caller (completer) thread (so, completionStage#whenComplete(..), not #whenCompleteAsync(..)), simply because it works in a same way as when
|
By
Pavel Bucek
· #42
·
|
|
#544: Localization & BeanValidation
Dear experts, we are working on improving integration with BeanValidation [1], and seems like if we choose to address this issue, the change will be slightly bigger than I anticipated. In short, the i
Dear experts, we are working on improving integration with BeanValidation [1], and seems like if we choose to address this issue, the change will be slightly bigger than I anticipated. In short, the i
|
By
Pavel Bucek
· #45
·
|
|
#544: Localization & BeanValidation
We are still not exactly sure how / whether it should be put into place. JAX-RS implementation has to have list of supported locales, because there is a defined algorithm, which chooses effective loca
We are still not exactly sure how / whether it should be put into place. JAX-RS implementation has to have list of supported locales, because there is a defined algorithm, which chooses effective loca
|
By
Pavel Bucek
· #56
·
|
|
Providers ordering
Hi Sergey, others, you suggest that the exception mapper would be part of MVC spec (not the implementation, so not in javax.* package but more like org.impl.something.*?). I think that checking packag
Hi Sergey, others, you suggest that the exception mapper would be part of MVC spec (not the implementation, so not in javax.* package but more like org.impl.something.*?). I think that checking packag
|
By
Pavel Bucek
· #61
·
|
|
Providers ordering
Hi Sergey, please see inline. yes, exactly. I was trying to offer another point of view on that issue, seemed like you are suggesting that the proposal uses @Priority in a way that contradicts its pur
Hi Sergey, please see inline. yes, exactly. I was trying to offer another point of view on that issue, seemed like you are suggesting that the proposal uses @Priority in a way that contradicts its pur
|
By
Pavel Bucek
· #65
·
|
|
Built-in proxy support in Client API?
Hi Andy, Dennis, proxy port and proxy host can be already be defined by java property (http.proxyHost and http.proxyPort). I'm not sure whether we can add proxy auth schemes at this point - if we'd st
Hi Andy, Dennis, proxy port and proxy host can be already be defined by java property (http.proxyHost and http.proxyPort). I'm not sure whether we can add proxy auth schemes at this point - if we'd st
|
By
Pavel Bucek
· #71
·
|
|
Built-in proxy support in Client API?
Hi Sergey, Andy, Dennis, all, it would definitely make sense, but there are always issues when you need to provide credentials. Since JAX-RS client is generally an object, which should be retained for
Hi Sergey, Andy, Dennis, all, it would definitely make sense, but there are always issues when you need to provide credentials. Since JAX-RS client is generally an object, which should be retained for
|
By
Pavel Bucek
· #74
·
|
|
#544: Localization & BeanValidation
selecting a right locale might be problematic. Imagine you have two resource method, one serving orders and the other one items. Items can be returned in different set of languages than orders. Then,
selecting a right locale might be problematic. Imagine you have two resource method, one serving orders and the other one items. Items can be returned in different set of languages than orders. Then,
|
By
Pavel Bucek
· #76
·
|
|
Built-in proxy support in Client API?
Hi Sergey, I recall getting a requests for supporting NTLM/Kerberos and maybe one other scheme - something related to ldap.. Regards, Pavel
Hi Sergey, I recall getting a requests for supporting NTLM/Kerberos and maybe one other scheme - something related to ldap.. Regards, Pavel
|
By
Pavel Bucek
· #78
·
|
|
Providers ordering
FYI: Custom providers without @Provider annotation will have priority value javax.ws.rs.Priorities.USER (value 5000). Also, Priority(100) > Prority(500), so provider with Priority(100) will be process
FYI: Custom providers without @Provider annotation will have priority value javax.ws.rs.Priorities.USER (value 5000). Also, Priority(100) > Prority(500), so provider with Priority(100) will be process
|
By
Pavel Bucek
· #80
·
|
|
Providers ordering
Hi Christian. Yes, you are right, that's a "typo". Thanks for letting us know :) Regards, Pavel
Hi Christian. Yes, you are right, that's a "typo". Thanks for letting us know :) Regards, Pavel
|
By
Pavel Bucek
· #82
·
|
|
PATCH support on the client
Dear experts, we'd like to make the HTTP PATCH support on the client optional, throwing UnsupportedOperationException on client runtimes, which don't support that method. I know that we already had a
Dear experts, we'd like to make the HTTP PATCH support on the client optional, throwing UnsupportedOperationException on client runtimes, which don't support that method. I know that we already had a
|
By
Pavel Bucek
· #85
·
|
|
PATCH support on the client
The issue with Sync/Async/RxInvoker#patch methods is similar to what we do have with Sync/Async/RxInvoker#method, but surprisingly #method doesn't mention anything about unsupported HTTP methods or ru
The issue with Sync/Async/RxInvoker#patch methods is similar to what we do have with Sync/Async/RxInvoker#method, but surprisingly #method doesn't mention anything about unsupported HTTP methods or ru
|
By
Pavel Bucek
· #89
·
|