Closed GoogleCodeExporter closed 8 years ago
I have found the solution by myself.
I have included the Proxy Settings to my project, once the network I'm
currently
working is behind proxy's security.
find a copy of the code below:
System.Net.WebProxy Proxy = new System.Net.WebProxy("192.168.0.1", 8080);
Proxy.UseDefaultCredentials = true;
Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
System.Net.WebRequest.DefaultWebProxy = Proxy;
Original comment by leonardo...@pdic.com
on 10 Nov 2009 at 4:14
Original comment by iron9li...@gmail.com
on 12 Nov 2009 at 3:57
Original issue reported on code.google.com by
leonardo...@pdic.com
on 10 Nov 2009 at 3:27