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 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, a thread can not access UI components. But I want to preload images
AFAIK profilers can only tell how much time is spent in each function. But
AFAIK, C supports just a few data types: int, float, double, char, void enum.
AFAIK the IsCellularDataRoamingEnabled property indficates if the connection supports roaming as such. But can
AFAIK one of the objectives of Stack Overflow is to make sure anyone can
AFAIK, extern keyword should be used for declaration and no value can be associated
Afaik, you can change/manipulate browser settings in Mozilla/Netscape browsers. For Instance netscape.security.PrivilegeManager.enablePrivilege('someprivilege'); Of course
AFAIK, we can have two static variables with the same name in different functions?
AFAIK, It's agreed that accessing virtual members from constructor is a dangerous practice. Can
System.Reflection does not (AFAIK) support reflecting on global methods in an assembly. At the

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.