Our program checks for updates by doing a POST to a url on our website which returns an XML response that has the latest version number. Works great unless there is a proxy server.
- How do I programatically determine if there is a proxy server?
- What do I need to then do to work through the proxy server?
We are presently using WebRequset.Create().
More details. The proxy log where this is happening shows:
AutoTag sends
HEAD http://update.windward.net/ HTTP/1.1
Host: update.windward.netand gets response with status code 407.
thanks - dave