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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 86k
  • Answers 86k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer % is a wildcard character (in Oracle at least), so… May 11, 2026 at 5:23 pm
  • Editorial Team
    Editorial Team added an answer You need to preserve the state of the radio buttons… May 11, 2026 at 5:23 pm
  • Editorial Team
    Editorial Team added an answer It is proper practice to put a forward class declaration… May 11, 2026 at 5:23 pm

Related Questions

I'm building a winForms app in NET3.5SP1 using VS2008Express. Am trying to deserialize an
I'm experiencing the same problem in this previous stackoverflow.com post . Specifically, I seem
I am trying to deserialize a Xml Fragment. I am nearly there but it
I'm trying to find a source control for my own personal use that's as

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.