We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Am also facing same thing not able to view Spengo implementation in netty Httpclient like in Apache HttpClient
Sorry, something went wrong.
@violetagg is there a support For Spnego Auth scheme with netty HttpClient similar to Apache's?
No
No branches or pull requests
We need to connect to some component via proxy, and this proxy works by kerberos auth. We need to do something like below:
We are not seeing any solution to run something like above Please help
The text was updated successfully, but these errors were encountered: