I am using a web client class in my source code for downloading a string using http.
This was working fine. However, the clients in the company are all connected now
My solution:
WebClient client = new WebClient(); WebProxy wp = new WebProxy(" proxy server url here"); client.Proxy = wp; string str = client.DownloadString("http://www.google.com");