// svc is a WebService that you would use in your ASP.NET applicationsvc.Proxy = new System.Net.WebProxy("127.0.0.1");((System.Net.WebProxy)svc.Proxy).BypassList = new string[] { "NameOfLocalMachine" };
// svc is a WebService that you would use in your ASP.NET application
svc.Proxy = new System.Net.WebProxy("127.0.0.1");
((System.Net.WebProxy)svc.Proxy).BypassList = new string[] { "NameOfLocalMachine" };
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.