|
Re: 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
·
|
|
Re: #544: Localization & BeanValidation
Hey Pavel,
I would like to take the opportunity to describe what MVC did to support internationalization which relates to the issue we are discussing here. As MVC builds on top of JAX-RS, this may (or
Hey Pavel,
I would like to take the opportunity to describe what MVC did to support internationalization which relates to the issue we are discussing here. As MVC builds on top of JAX-RS, this may (or
|
By
Christian Kaltepoth
·
#79
·
|
|
Re: 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
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
|
By
Pavel Bucek
·
#80
·
|
|
Re: Providers ordering
Hi Pavel,
thanks a lot the explanation. I just had a look at the changes and it looks good.
One minor thing. One of the new paragraphs state:
All application-supplied providers implement interfaces
Hi Pavel,
thanks a lot the explanation. I just had a look at the changes and it looks good.
One minor thing. One of the new paragraphs state:
All application-supplied providers implement interfaces
|
By
Christian Kaltepoth
·
#81
·
|
|
Re: 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
·
|
|
Re: #544: Localization & BeanValidation
Hi Christian,
This seems very useful, pretty much like what could be useful within
JAX-RS itself. That selected Locale could then be used with a
specifically set up message interpolator, just as JSF
Hi Christian,
This seems very useful, pretty much like what could be useful within
JAX-RS itself. That selected Locale could then be used with a
specifically set up message interpolator, just as JSF
|
By
Gunnar Morling
·
#83
·
|
|
Re: #544: Localization & BeanValidation
Hi Gunnar,
sorry, the term "priority" was a bit misleading in this context. Actually it uses the "quality value" from the "Accept-Language" header.
See:
Hi Gunnar,
sorry, the term "priority" was a bit misleading in this context. Actually it uses the "quality value" from the "Accept-Language" header.
See:
|
By
Christian Kaltepoth
·
#84
·
|
|
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
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
|
By
Pavel Bucek
·
#85
·
|
|
Re: PATCH support on the client
My opinion is that either we support it completely or not at all. Making it optional renders the feature useless for ISVs: If I cannot rely on it being there on _all_ platforms, I will _never_ use it,
My opinion is that either we support it completely or not at all. Making it optional renders the feature useless for ISVs: If I cannot rely on it being there on _all_ platforms, I will _never_ use it,
|
By
Markus KARG
·
#86
·
|
|
Re: PATCH support on the client
The issue applies not only to PATCH but to all other methods which happen not be known to HttpUrlConnection.
But rather than say something along the lines "only well-known verbs" can be supported and
The issue applies not only to PATCH but to all other methods which happen not be known to HttpUrlConnection.
But rather than say something along the lines "only well-known verbs" can be supported and
|
By
Sergey Beryozkin
·
#87
·
|
|
Re: PATCH support on the client
In fact no ISV is using that optional methods unless they package their app with a particular JRE.
-Markus
In fact no ISV is using that optional methods unless they package their app with a particular JRE.
-Markus
|
By
Markus KARG
·
#88
·
|
|
Re: 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
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
|
By
Pavel Bucek
·
#89
·
|
|
Re: PATCH support on the client
Hi Pavel
Right, that what I was also implying, that API already allows to use any HTTP method names, so it is not only about PATCH.
So we should have method(String) variations docs updated.
Re
Hi Pavel
Right, that what I was also implying, that API already allows to use any HTTP method names, so it is not only about PATCH.
So we should have method(String) variations docs updated.
Re
|
By
Sergey Beryozkin
·
#90
·
|
|
Re: PATCH support on the client
Same feeling here.
Cheers
Alessio
Same feeling here.
Cheers
Alessio
|
By
Alessio Soldano
·
#91
·
|
|
Re: PATCH support on the client
That is more-or-less my opinion too. I'd prefer that we supported the patch() method fully (not optionally), but if the decision is support it optionally or not at all, I'd choose not at all.
On
That is more-or-less my opinion too. I'd prefer that we supported the patch() method fully (not optionally), but if the decision is support it optionally or not at all, I'd choose not at all.
On
|
By
Andy McCright
·
#92
·
|
|
Re: CDI integration
I agree with Guillermo and Arjan that further CDI alignment is very important for JAX-RS.
It would be great to see some EG discussion about this.
Christian
2017-05-25 20:13 GMT+02:00 Arjan Tijms
I agree with Guillermo and Arjan that further CDI alignment is very important for JAX-RS.
It would be great to see some EG discussion about this.
Christian
2017-05-25 20:13 GMT+02:00 Arjan Tijms
|
By
Christian Kaltepoth
·
#93
·
|
|
Re: CDI integration
Yes, agreed.
Especially the ability to @Inject JAX-RS managed objects (basically what is @Context today) would be very helpful. That enables to inject UriInfo within the EE application
Yes, agreed.
Especially the ability to @Inject JAX-RS managed objects (basically what is @Context today) would be very helpful. That enables to inject UriInfo within the EE application
|
By
Sebastian Daschner
·
#94
·
|
|
Re: CDI integration
@Context is that little thing that has helped to make JAX-RS visible outside of the EE world, as opposed to it be yet another EE spec.
Rather than trying to keep JAX-RS more and more
@Context is that little thing that has helped to make JAX-RS visible outside of the EE world, as opposed to it be yet another EE spec.
Rather than trying to keep JAX-RS more and more
|
By
Sergey Beryozkin
·
#95
·
|
|
Re: CDI integration
Hi,
It's not just another EE spec, but one of the fundamental EE specs.
IMHO; open as possible also means that you eventually commit to nothing and only make it more difficult and confusing to use
Hi,
It's not just another EE spec, but one of the fundamental EE specs.
IMHO; open as possible also means that you eventually commit to nothing and only make it more difficult and confusing to use
|
By
Arjan Tijms
·
#96
·
|
|
Re: CDI integration
Hi
Lest not dramatize it,
difficult, confusing, all because of @Context ? I'm not going to comment.
As well as re this 'ownership' claim of JAX-RS by EE.
Hi
Lest not dramatize it,
difficult, confusing, all because of @Context ? I'm not going to comment.
As well as re this 'ownership' claim of JAX-RS by EE.
|
By
Sergey Beryozkin
·
#97
·
|