Open GoogleCodeExporter opened 9 years ago
I'm not all that familiar with proxies. How do you authenticate to the proxy?
Is there a spec for that?
Original comment by johan.ha...@gmail.com
on 24 Nov 2014 at 6:23
Hello,
I'm talking about proxy credentials used by HTTP Client that can be declared
like this in Java :
System.getProperties().put("http.proxyHost", "someProxyURL");
System.getProperties().put("http.proxyPort", "someProxyPort");
System.getProperties().put("http.proxyUser", "someUserName");
System.getProperties().put("http.proxyPassword", "somePassword");
Example below :
http://stackoverflow.com/questions/1626549/authenticated-http-proxy-with-java
And RFC 2069 talks about it :
https://www.ietf.org/rfc/rfc2069.txt
Original comment by supercoo...@gmail.com
on 24 Nov 2014 at 8:17
Oh that doesn't look so complicated. I'll try to add support for it when I find
some time.
Original comment by johan.ha...@gmail.com
on 25 Nov 2014 at 6:13
I think I found something.
In com.jayway.restassured.authentication.PreemptiveBasicAuthScheme.class
line 33. The header's name is incorrect.
It should be 'Proxy-Authorization'.
Enjoy.
Original comment by soprano....@gmail.com
on 24 Dec 2014 at 9:21
Yes, you're right soprano !
Original comment by supercoo...@gmail.com
on 24 Dec 2014 at 9:49
Original issue reported on code.google.com by
supercoo...@gmail.com
on 20 Nov 2014 at 1:47