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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:56:10+00:00 2026-05-22T15:56:10+00:00

AFAIK with XmlHttpRequest I can download and upload data just with the send method.

  • 0

AFAIK with XmlHttpRequest I can download and upload data just with the send method. But WebClient has plenty of methods. I don’t want all the functionality of a WebClient. I just want to create an object that emulates a XmlHttpRequest, except that it doesn’t have XSS restrictions. I also don’t care about getting the response as an XML or even as a string right now. If I can get it as an array of bytes that’s good enough.

I thought that I could use the UploadData as my universal method, but it fails when trying to download data with it even though it returns a response. So how can I write a method that behaves just like XmlHttpRequest‘s send method?

Edit: I found an incomplete class that is precisely an XmlHttpRequest emulator here. Too bad the whole code is lost.

  • 1 1 Answer
  • 2 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-05-22T15:56:11+00:00Added an answer on May 22, 2026 at 3:56 pm

    You’ll need to use an HttpWebRequest.

    HttpWebRequest rq = (HttpWebRequest)WebRequest.Create("http://thewebsite.com/thepage.html");
    using(Stream s = rq.GetRequestStream()) {
        // Write your data here
    }
    
    HttpWebResponse resp = (HttpWebResponse)rq.GetResponse();
    using(Stream s = resp.GetResponseStream()) {
        // Read the result here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

AFAIK profilers can only tell how much time is spent in each function. But
I just discovered that C++/CLI has a keyword that is not present (AFAIK) on
AFAIK, turing computable numbers are numbers whose i-th index can be returned by a
I have an .pxf (AFAIK PKCS#12) certificate. How can I confirm a given password
One can design plugins in C using 2 techniques (AFAIK): Use dlopen() all the
AFAIK, we all must programming to database through database wrapper/manager such as sqliteman or
AFAIK java stores dates in long variables as milliseconds. Consequently someday there will be
AFAIK, there is only one difference: key_id must be int and key_name must be
AFAIK, usual ASP.NET web site/web application switched on into DEBUG mode when web/app-config setting
I have a little trouble understanding the security bit around JSON, because often things

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.