// JP opened flex table

Click to See Complete Forum and Search --> : Problem in accessing url through Proxy server (WinInet)


chmanish
March 16th, 2004, 05:00 AM
Hi Gurus,

I am creating CHttpConnection to a web site and sending a GET request to a specific URL (ASP file). We use a proxy server (ISA) to access the internet. As long as the url is present on a computer in our LAN, the request is received. But when I try to access the same page in our actual site (on a remote computer using internet), following comes:


HTTP 407 Proxy Authentication Required - The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied. (12209)Internet Security and Acceleration Server
:confused:

Now, what should be done so that my application can fetch pages from the internet through proxy server as well.

Thanx in advance

xander_tan
March 16th, 2004, 12:00 PM
I got the same problem also, actually I don't know how to solve also. What we need to do is using HTTP tunneling. But I don't know how to make the software. At the moment, I'm using HTTPort 3.SNFM. So you can access the website you want through the proxy.

myron
March 2nd, 2005, 11:08 PM
There is a non-documented flag: INTERNET_FLAG_KEEP_CONNECTION

Try using this flag and it can help you solve the 407 problem.

Good luck.

//JP added flex table