-
Notifications
You must be signed in to change notification settings - Fork 673
Open
Open
Copy link
Labels
help wantedWe need contributions on thisWe need contributions on thistype/enhancementA general enhancementA general enhancement
Milestone
Description
We need to connect to some component via proxy, and this proxy works by kerberos auth. We need to do something like below:
CredentialsProvider credsr = new BasicCredentialsProvider();
credsProvider.setCredentials(new AuthScope(null, -1, null), use_jaas_creds);
Registry<AuthSchemeProvider> authSchemeRegistry = RegistryBuilder.<AuthSchemeProvider>create().register(AuthSchemes.SPNEGO, new SPNegoSchemeFactory(true)).build();
CloseableHttpClient httpclient = HttpClients.custom()
// set our proxy - httpclient doesn't use ProxySelector
.setRoutePlanner(new DefaultProxyRoutePlanner(proxy))
.setDefaultAuthSchemeRegistry(authSchemeRegistry)
.setDefaultCredentialsProvider(creds).build();
We are not seeing any solution to run something like above Please help
Metadata
Metadata
Assignees
Labels
help wantedWe need contributions on thisWe need contributions on thistype/enhancementA general enhancementA general enhancement
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
naveenyamsani commentedon Mar 10, 2024
Am also facing same thing not able to view Spengo implementation in netty Httpclient like in Apache HttpClient
naveenyamsani commentedon Mar 11, 2024
@violetagg is there a support For Spnego Auth scheme with netty HttpClient similar to Apache's?
violetagg commentedon Mar 11, 2024
No
raccoonback commentedon May 20, 2025
@violetagg
Hello,
I'm wondering if there are any plans to support this feature in Reactor Netty.
If so, would it be alright for me to look into it?
Thank you!
violetagg commentedon May 20, 2025
Yes sure, you can pick this one.
I think we want to introduce it in
main
(future1.3.x
) and not1.2.x
.