Uploading files to server - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:23:29Zhttp://stackoverflow.com/feeds/question/676447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/676447/uploading-files-to-server0Uploading files to serverShivkumar2009-03-24T07:36:23Z2009-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 < 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#6764630Answer by Mitch Wheat for Uploading files to serverMitch Wheat2009-03-24T07:49:36Z2009-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>