Questions tagged [proxy-authentication]

81 questions
2
votes
0 answers

Proxy authentication in CFSteam based connection (iOS)

I have implemented CFStream based connection according to CFNetwork programming guide. How do I get credentials for authenticated proxy servers? Is there a way where I can get shared username and password stored by the system dialog, the dialog…
8suhas
  • 1,460
  • 11
  • 20
2
votes
2 answers

installing the ADT plugin behind an authenticated HTTP proxy

I am trying to get the Android ADT pluging on a 64 bit eclipse indigo installation on a windows 7 home premium machine. My system is situated behind an authenticated http proxy. I tried setting the http & https (not SOCKS because that caused other…
Adwait Dongare
  • 301
  • 1
  • 3
  • 13
1
vote
2 answers

Client Webservice in java - proxy authentication

I have made a web service client importing a third party wsdl in eclipse. But I got this exception: javax.xml.ws.WebServiceException: Connection IO Exception. Check nested exception for details. (Unable to connect to 1X.XXX.X.XX:X0 - Connection…
Abhishek
  • 2,095
  • 2
  • 21
  • 25
1
vote
0 answers

How to use Proxy with Username and Password in Selenium C#

I'm having a problem when using Proxy with Selenium in C#. My proxy requires a Username and Password to authenticate to use it with Chrome Selenium C#. Is there anyway to authenticate proxy with authentication? Thanks so much, English is my 2nd…
1
vote
0 answers

Using connect-exchangeonline PS via a proxy from within C# (.NET Core 3.1)

I am developing a .NET Core 3.1 API that is trying to connect to Exchange Online by calling Powershell from behind a Proxy that you need to authenticate with. If I run the below Powershell script in Powershell it connects without an issue and pulls…
Marcus T-M
  • 33
  • 5
1
vote
0 answers

How can i change webdriver proxy via chrome extension without closing the webdriver?

class WebDriver: def __init__(self, host, port, user, passw): self.host = host self.port = port self.user = user self.passw = passw self.manifest_json = """ { "version": "1.0.0", …
1
vote
1 answer

How to handle incorrect proxy-auth credentials

I have an electron app that will sometimes be used behind corporate firewalls. I have added a login event listener to the app and requesting username and password from the user via a dialog box. It's working fine if the user enters their details…
Qazzian
  • 684
  • 6
  • 9
1
vote
0 answers

How to fix "Received status code 407 from server: authenticationrequired" with android studio

I'm trying to run a "first app" application in android studio 3.3. My connection is via proxy. When I try run the "first app", android studio show me the next error: ERROR: Could not GET…
1
vote
0 answers

Block chrome network requests until extension is initialized

I am working on proxy extension for chrome browser. My extension sets proxy config of the browser using: chrome.proxy.settings.set({ value: config, scope: 'regular', }); Where config uses fixed_servers mode. Proxy servers require…
1
vote
1 answer

Does Loopback supports proxied authentication?

I am creating an API in NodeJS using IBM's Loopback (3.x) framework. Loopback seems to handle classic authentication methods (vs database). In my case, we are using a proxied authentication header (from a 3rd party software) with the username and…
1
vote
0 answers

How to send text on a proxy authentication alert box on Firefox with selenium

I am trying to handle proxy authentication. I cannot find a way at all. How can I send text to a proxy authentication alert box that pops up when you only type the host and port.
Tron
  • 115
  • 2
  • 7
1
vote
0 answers

How do I authenticate proxy network when using postman native App?

I am using postman native app on windows machine(Version 6.0.9). There is no option for me to set proxy user name and password under settings>>Proxy. only i have an option set Proxy Server. Also postman app is not taking chrome/system proxy…
1
vote
1 answer

HTTP request via proxy on AWS server fails with 407

I'm running this brief script locally as well on an AWS EC2 intance in an ECS cluster: import requests proxies = {'http':'http://user:pw@host:port','https':'http://user:pw@host:port'} r = requests.get('http://quotes.toscrape.com/',…
1
vote
1 answer

CEF Python Proxy Authentication

Is there a way to add Proxy Authentication in CEF Python? The best answer I could find is here. The problem is that the code is written in C# and I couldn't manage to convert it to Python.
ThousandSteps
  • 67
  • 1
  • 7
1
vote
1 answer

Camel Http4 using basic auth and proxy auth

I've been trying to use Apache Camel's Http4 component to connect to a HTTPS URL that needs Basic authentication. The connection needs to be done through an authenticated HTTP proxy. So, according to the docs, I configure the Camel endpoint like…
Xavi López
  • 27,550
  • 11
  • 97
  • 161