We are developing a winform.NET 2.0 application. The application must access the web services . However, we run into problems with users behind proxies.
Popular Windows backup applications (I think Mozy ) provide a moderately sophisticated proxy settings dialog box. However, reimplementing yet another proxy and GUI logic seems like a waste of time for me.
What are the best ways to work with a proxy server with .NET client applications?
More specifically, we have a case where a user has written their proxy settings in Internet Explorer (including username and password), so the default .NET proxy behavior should work. However, the user still asks for his username and password when starting IE (both fields are pre-filled, the user just needs to click "OK"), and our winform application still does not work when processing proxies.
What should we do to ensure that the user is not prompted for a username and password when starting IE?
source
share