Azure / Azure/azure-documentdb-java

How to use with proxy username and password ?

未關閉
#76 3 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視

還沒有人認領這個 Issue。

investigating
主要語言
Java
星號
51
分支
52
PR 合併指標
30 天內沒有已合併 PR

描述

Hii,
I am working behind the proxy network.
I tried arguments like following but it is not working.

-Dhttp.proxyHost=myproxy Dhttp.proxyPort=3128
-Dhttps.proxyHost=myproxy -Dhttps.proxyPort=3128

Following allows me add host and port of proxy, but I required to username and password as well.
connectionPolicy.setProxy(new HttpHost(InetAddress.getByName("proxy.company.com"), 12345));

I also tried following for authentication

final String authUser = "user";
final String authPassword = "password";
Authenticator.setDefault(
   new Authenticator() {
      @Override
      public PasswordAuthentication getPasswordAuthentication() {
         return new PasswordAuthentication(
               authUser, authPassword.toCharArray());
      }
   }
);

System.setProperty("http.proxyUser", authUser);
System.setProperty("http.proxyPassword", authPassword);

How can I use username and password for authentication for proxy.

貢獻指南

開啟貢獻指南

從這裡開始

  1. 先讀完整個 Issue,再讀專案的貢獻指南。
  2. 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
  3. Fork 儲存庫,在一個分支上完成修改。
  4. 送出 Pull Request,並在描述裡引用這個 Issue 編號。

研究方向

該 issue 提到了入口點 connectionPolicy.setProxy 和 Java Proxy 屬性,但沒有指出檔案或測試。首先追蹤 Java SDK 中如何套用 Proxy 設定,以及是否支援經過驗證的 Proxy 憑證。完成標準是確立受支援的使用者名稱/密碼設定,或透過一個經過驗證的範例記錄這項限制。

由索引模型根據 Issue 內容生成。

評估

技術堆疊
azure, java
領域
api, cloud
Issue 類型
功能
難度
4/5
預估耗時
3-5 天
活躍度
停滯
描述清晰度
需要釐清
新手友好度
25/100

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。