You are not logged in.
Pages: 1
Hi AB,
Today I found myself in the situation of having to set up an http proxy to surf outside the local network.
I did not find documentation on how to provide credentials.
The program (win32) use this:
var
aclient: TSQLHttpClient
begin
aclient: TSQLHttpClientWinHTTP.Create = (addr, SERVER_PORT, Amodel);
I changed in:
aclient: TSQLHttpClientWinHTTP.Create = (addr, SERVER_PORT, Amodel, false, 'proxy: 8080', 'localhost');
and works with an authenticated proxy-based ip origin, but if authentication is on user / password does not work.
but how do I add the user and password?
Offline
A simple Google search returned me https://technet.microsoft.com/en-us/library/bb430772
I think it is what you need.
Offline
I only want to enable my application, not the entire computer.
There is no API to call?
Offline
AFAIR you should use:
username:password@proxy:PORT
Offline
Pages: 1