CXF, OAuth2 and social login

2018-02-12 Thread Vassilis Virvilis
Hi, I am looking in CXF support for OAuth2 support in general and social logins in particular. See http://cxf.apache.org/docs/jax-rs-oauth2.html From the docs it is not immediately evident if the OAuth2 support has been written with the "social login" workflow in mind. There is of course http

Re: CXF, OAuth2 and social login

2018-02-12 Thread Sergey Beryozkin
Hi I'm assuming you are mainly interested in making your web application acting as OpenIdConnect client or RP, i.e, a user who is about to access this web application needs to authenticated first against Google/etc ? CXF offers quite a decent support for it, I'd recommend to experiment with

Re: Client not sending proxy credentials

2018-02-12 Thread Colm O hEigeartaigh
On Sun, Feb 11, 2018 at 11:51 PM, Al Grant wrote: > > http.setAuthorization(auth); > This should be: http.setProxyAuthorization(auth); Colm. > http.setClient(policy); > } > > http.setTlsClientParameters(tlsParams); > > // SEND DATA > re

Re: Client not sending proxy credentials

2018-02-12 Thread Al Grant
Thanks - yes it actually goes with this but I have to be very patient. For some reason it sits there trying to send the message for 10 minutes before it actually gets to send anything. It might be something to do with OCSP since i am using mutual TLS - unless anyone here has other ideas? Cheers

Re: CXF, OAuth2 and social login

2018-02-12 Thread Vassilis Virvilis
Hi Sergey, Thanks for the quick replay. Yes your assumption is correct. Thank you for the pointer. I wasn't aware of that. Certainly looks interesting and more inline with my requirements. I will investigate further as my preference is to use CXF. I did my search and I didn't hit oidc before