Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. WebRequest question

WebRequest question

Scheduled Pinned Locked Moved C#
questionsysadminhelp
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Z Offline
    Z Offline
    zagzagzag
    wrote on last edited by
    #1

    I have a little question regarding WebRequests i hope you can help me with. I'm using a WebRequest to download some files from a remote server. Since these files can be quite big, i wondered if there's a way to "follow" the progress of the file transfer? Regards

    G Z 2 Replies Last reply
    0
    • Z zagzagzag

      I have a little question regarding WebRequests i hope you can help me with. I'm using a WebRequest to download some files from a remote server. Since these files can be quite big, i wondered if there's a way to "follow" the progress of the file transfer? Regards

      G Offline
      G Offline
      Guffa
      wrote on last edited by
      #2

      You can try if reading the response as a stream enables you to get the response as it arrives. I'm not sure if the entire response is recieved before the GetResponse method returns r not. Here is an example from MSDN:

      // Create a 'WebRequest' object with the specified url.
      WebRequest myWebRequest = WebRequest.Create("http://www.constoso.com");

      // Send the 'WebRequest' and wait for response.
      WebResponse myWebResponse = myWebRequest.GetResponse();

      // Obtain a 'Stream' object associated with the response object.
      Stream ReceiveStream = myWebResponse.GetResponseStream();

      Encoding encode = System.Text.Encoding.GetEncoding("utf-8");

      // Pipe the stream to a higher level stream reader with the required encoding format.
      StreamReader readStream = new StreamReader( ReceiveStream, encode );
      Console.WriteLine("\nResponse stream received");
      Char[] read = new Char[256];

      // Read 256 charcters at a time.
      int count = readStream.Read( read, 0, 256 );
      Console.WriteLine("HTML...\r\n");

      while (count > 0) {
      // Dump the 256 characters on a string and display the string onto the console.
      String str = new String(read, 0, count);
      Console.Write(str);
      count = readStream.Read(read, 0, 256);
      }

      Console.WriteLine("");
      // Release the resources of stream object.
      readStream.Close();

      // Release the resources of response object.
      myWebResponse.Close();

      --- b { font-weight: normal; }

      1 Reply Last reply
      0
      • Z zagzagzag

        I have a little question regarding WebRequests i hope you can help me with. I'm using a WebRequest to download some files from a remote server. Since these files can be quite big, i wondered if there's a way to "follow" the progress of the file transfer? Regards

        Z Offline
        Z Offline
        zagzagzag
        wrote on last edited by
        #3

        Thanks! i will try to experiment with that!

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups