Skip to content
New issue

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

Configuring authentication for proxy doesn't work #139

Open
DiiaanaD opened this issue Oct 13, 2022 · 1 comment
Open

Configuring authentication for proxy doesn't work #139

DiiaanaD opened this issue Oct 13, 2022 · 1 comment

Comments

@DiiaanaD
Copy link

DiiaanaD commented Oct 13, 2022

Hello.

I want to use a proxy that needs authentication and I tried the following solution:

ClientConfig config = ClientConfigUtil.addBasicAuthCredentials(new ClientConfig(), "Aladdin", "open sesame");
RestProxyFactory.createProxy(Service.class, url, config);

(the code was added in ExchangeRestProxyBuilder::build function)

I found that it was suggested here, but it doesn't work:
#23

The header is set on ClientConfig but they don't seem to be populated on the proxy also.
Any idea?

Thanks,
Diana

@damiano1996
Copy link

Hi, same issue, but I solved by adding this code before the exchange initialization:

String proxyUserName = "...";
String proxyPassword = "...";

Authenticator.setDefault(
        new Authenticator() {
            @Override
            public PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(proxyUserName, proxyPassword.toCharArray());
            }
        }
);

System.setProperty("http.proxyUser", proxyUserName);
System.setProperty("http.proxyPassword", proxyPassword);
System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants