Uploading files to server - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:23:29Z http://stackoverflow.com/feeds/question/676447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/676447/uploading-files-to-server 0 Uploading files to server Shivkumar 2009-03-24T07:36:23Z 2009-03-24T07:49:36Z <p>I am trying to upload a file from my Windows application to the server into a particular Folder using C#. However, I am getting an exception:</p> <blockquote> <p>"An exception occurred during a WebClient request".</p> </blockquote> <p>Here is my code:</p> <pre><code>for (int i = 0; i &lt; dtResponseAttach.Rows.Count; i++) { string filePath = dtResponseAttach.Rows[i]["Response"]; WebClient client = new WebClient(); NetworkCredential nc = new NetworkCredential(); Uri addy = new Uri("http://192.168.1.4/people/Attachments/"); client.Credentials = nc; byte[] arrReturn = client.UploadFile(addy, filePath); Console.WriteLine(arrReturn.ToString()); } </code></pre> <p>What could be the reason for this exception?</p> http://stackoverflow.com/questions/676447/uploading-files-to-server/676463#676463 0 Answer by Mitch Wheat for Uploading files to server Mitch Wheat 2009-03-24T07:49:36Z 2009-03-24T07:49:36Z <p>If you are not filling in the <code>NetworkCredential</code>, then I'm pretty sure you should not attach one.</p> <p>Another possibility, is that you are going through a proxy, and would need to add the proxy details:</p> <pre><code>WebProxy p = new WebProxy ("192.168.10.01", true); p.Credentials = new NetworkCredential ("username", "password", "domain"); using (WebClient wc = new WebClient()) { wc.Proxy = p; ... } </code></pre>