Questions tagged [proxy-authentication]

81 questions
4
votes
2 answers

ClickOnce Not Obeying Installation Folder for Localhost

I'm testing a ClickOnce application deployment. I have setup a virtual directory on my machine (running IIS). I have specified http://localhost/SampleApplication as the Installation Folder URL in the Publish tab of Visual Studio. However, when I…
Chris Holmes
  • 11,444
  • 12
  • 50
  • 64
4
votes
1 answer

WebRequest is not able to validate invalid proxy credentials after validating valid credentials in vb.net

I'm validating proxy credentials using WebRequest.DefaultWebProxy. After giving valid credentials when I'm using invalid credentials it also works fine. so it is not validating proxy credentials here. here is my code. Dim webProxy = New…
4
votes
1 answer

Connect ADB Proxy with UserName and Password

i'm using ADB with command adb shell settings put global http_proxy : it's works very good . but i can't login proxy if it had protected with username and password please help me if you know anything .
Tkiet
  • 41
  • 1
  • 3
4
votes
1 answer

Reuse authorization header to prevent multiple 407 proxy authentication challenges with Jersey Client

I am using the Jersey Client 2.0 library (with Apache HttpClient v4.2.5 transport connector) to consume a RESTful web service. My application must support connections via a proxy server with any of Basic, Digest or NTLM authentication. I have added…
3
votes
1 answer

Proxy Authentication Error

HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create("https://www.example.com"); NetworkCredential nc = new NetworkCredential("myname", "mypass"); WebProxy myproxy = new WebProxy("192.168.1.1:8080", false); myHttpWebRequest.Proxy =…
Kevin
  • 407
  • 2
  • 7
  • 22
3
votes
1 answer

Headless and Proxy authentication Selenium Python

I'm looking for a way to make proxies work with authentication and headless. I tried this: import os import zipfile PROXY_HOST = 'ooooo.com' # rotating proxy or host PROXY_PORT = 12345 # port PROXY_USER = 'User_Proxy' # username PROXY_PASS =…
3
votes
1 answer

Proxy Authentication and node request

I am trying to send a get request to a site over https using request. I am however, behind a proxy, which requires authentication to use. When i try to add the authentication however it fails to connect to the site. I have tried adding the…
3
votes
1 answer

Do Jersey client support NTLM proxy

I'm trying to make a jersey client call using NTLM proxy? is that possible as i was not able to get any clear information on the same. Did anyone tried before?
user2315454
  • 61
  • 2
  • 4
2
votes
1 answer

Create a URLConnection that can pass username and password in JAAS Security

Hi I have something like the following that makes a URL Connection and retrieves the data. The problem is that when I hit a page that requires authentication first I get the login page. I'm unsure of how to pass a username and password in…
Will
2
votes
3 answers

C# Selenium Proxy Authentication with Chrome Driver

I am using the following code for the proxy. however, when chrome starts, pop-up window will pop up and the program will be locked. public async void StartDriver(string proxy) { var proxys = new Proxy(); ChromeDriverService…
Appiah
  • 49
  • 1
  • 7
2
votes
0 answers

Proxy Authentication in Python

I am building a web scraper that once you enter a URL it grabs the necessary data. I am manually entering my network credentials and my proxy settings. Is there a way around this as this is not a graceful solution? Is there a way to take my default…
Calvin P
  • 109
  • 1
  • 6
2
votes
0 answers

How to get type of proxy authentication scheme on proxy server while using winapi?

I want to download a file using BITS or any other asynchronous file download winapi. Can anyone suggest any method to identify the proxy authentication scheme on server so that I can act accordingly in my application. (For ex. either its NTLM or…
2
votes
0 answers

Why do I get (407) Proxy Authentication Required in a WinForms app and not a Console app?

I've got a problem getting my software to communicate through a proxy server at a client's site. It just gets (407) Proxy Authentication Required errors. It's a .NET Framework 3.5 C# WinForms application which uses old-style asmx web references to…
2
votes
2 answers

(407) Proxy Authentication Required

I know this has been asked many many times. I have read most all posts on here and other sites like this one. http://social.msdn.microsoft.com/Forums/en-US/ncl/thread/2931d21c-9ca8-4256-b213-915fad4c941b/ With no avail. Here's the…
jlh3302
  • 125
  • 1
  • 2
  • 9
2
votes
2 answers

NTLM Proxy Auth in perl

I need to access internet page via proxy. I need to used NTLM or Digest Auth Scheme The code i get on googling doesn't work. Below code is making web request with any Auth Header. Please help me to get webpage via NTLM proxy auth. GET (URL address…
uma mahesh
  • 132
  • 2
  • 10