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 9188855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:06:45+00:00 2026-06-17T20:06:45+00:00

I am using ASP.NET to read a Request.InputStream and send a HttpRequest to a

  • 0

I am using ASP.NET to read a Request.InputStream and send a HttpRequest to a page that was sent to me throw a QueryString parameter, I read correctly the Request.InputStream and I make the HttpRequest correctly, but when in my Request.InputStream I find special characters like this “Porsvägen” the I get this error:
ystem.Net.WebException: The request was aborted: The request was canceled. —> System.IO.IOException: Cannot close stream until all bytes are written.
at System.Net.ConnectStream.CloseInternal(Boolean internalCall, Boolean aborting)

My code for getting the Request.InputStream is this:

string requestData = (new StreamReader(Request.InputStream)).ReadToEnd();

My code for making a HttpRequest and sending it is this:

    webRequest = (HttpWebRequest)WebRequest.Create(new Uri(urlDestination));
    webRequest.Method = "POST";

    webRequest.ContentType = "application/x-www-form-urlencoded";
    webRequest.ContentLength = requestData.Length;

    writer = new StreamWriter(webRequest.GetRequestStream());
    writer.Write(requestData, 0, requestData.Length);//<-------Here I get the ERROR
    if (writer != null)
    {
        writer.Close();
    }

Can you please tell me what is wrong with my code, because it works, but for special characters it crashes.

  • 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. Editorial Team
    Editorial Team
    2026-06-17T20:06:46+00:00Added an answer on June 17, 2026 at 8:06 pm

    I have manage to overcome the error by implementing this:

            string requestData = (new StreamReader(Request.InputStream)).ReadToEnd();
            byte[] bytes = Request.ContentEncoding.GetBytes(requestData);
    
            Stream writer = webRequest.GetRequestStream();
            writer.Write(bytes, 0, bytes.Length);
    

    I used Stream to write the HttpWebRequest instead of StreamWriter and read the InputStream in bytes using the ContentEncoding

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using asp.net page that is fully ajaxified (with jquery lib) and calling another
How does one read the request body in ASP.NET? I'm using the REST Client
I am working on a ASP.NET application using C# that is trying to read
I am building a RESTful web service using ASP.NET web API. I've read that
Using ASP.NET MVC 2.0, I have an actionlink that is used for comments on
I am using ASP.NET forms version 3.5 in VB I have a dropdownlist that
I am using ASP.NET and C#. I must read a cookie called TheCookie............. TheCookie
i have an ASP.net page that generates dynamic xml but the get statement of
I have read that ASP.NET uses connection pooling to manage database connections so it
I am using tinymce editor in asp.net page. It was configured fine but when

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.