Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 49371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:25:34+00:00 2026-05-10T16:25:34+00:00

I am trying to read an Http response stream twice via the following: HttpWebResponse

  • 0

I am trying to read an Http response stream twice via the following:

HttpWebResponse response = (HttpWebResponse)request.GetResponse(); stream = response.GetResponseStream(); RssReader reader = new RssReader(stream); do {   element = reader.Read();   if (element is RssChannel)   {     feed.Channels.Add((RssChannel)element);   } } while (element != null);  StreamReader sr = new StreamReader(stream); feed._FeedRawData = sr.ReadToEnd(); 

However when the StreamReader code executes there is no data returned because the stream has now reached the end. I tried to reset the stream via stream.Position = 0 but this throws an exception (I think because the stream can’t have its position changed manually).

Basically, I would like to parse the stream for XML and have access to the raw data (in string format).

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T16:25:35+00:00Added an answer on May 10, 2026 at 4:25 pm

    Copy it into a new MemoryStream first. Then you can re-read the MemoryStream as many times as you like:

    Stream responseStream = CopyAndClose(resp.GetResponseStream()); // Do something with the stream responseStream.Position = 0; // Do something with the stream again   private static Stream CopyAndClose(Stream inputStream) {     const int readSize = 256;     byte[] buffer = new byte[readSize];     MemoryStream ms = new MemoryStream();      int count = inputStream.Read(buffer, 0, readSize);     while (count > 0)     {         ms.Write(buffer, 0, count);         count = inputStream.Read(buffer, 0, readSize);     }     ms.Position = 0;     inputStream.Close();     return ms; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use http-parser and write the response to a file following
I’m trying to read the HTTP response code from a remote server but am
I'm trying to read my json data, but it crashes. NSString *hostStr = @http://www.myIP.com/notices.php;
Trying to read headers for a csv file with: reader = csv.DictReader(open(PATH_FILE),skipinitialspace=True) headers =
I am trying to retrieve the values from the following url: http://rentopoly.com/ajax.php?query=Bo . I
I'm trying to read a calendar feed from http://meetup.com/ , but it seems that
I'm trying to write out to the response stream - but it is failing,
I am trying to perform a http-get-request and show the download progress to the
I'm trying to consume the following web service http://ipinfodb.com/ip_location_api.php this web service returns an
I'm trying to make a small programm to download files via HTTP in C#.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.