show/hide this revision's text 2 Minor formatting corrections, tags added.

Hi

I am trying to upload a file from my windows Windows application to the server (In into a particular Folder ) using C# C#. However, I am getting an exceptionas :

"An exception occurred during a WebClient request".

below

Here is my 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());
}

Thanks in advance

What could be the reason for this exception?

show/hide this revision's text 1

Uploading files to server

Hi I am trying to upload file from my windows application to server (In a Folder) using C# I am getting exception as "An exception occurred during a WebClient request".

below is my 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());
        }

Thanks in advance