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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:12:06+00:00 2026-05-26T13:12:06+00:00

I am trying to send an XML file that I created in my memorystream.

  • 0

I am trying to send an XML file that I created in my memorystream. The problem comes in when I try to use UploadFile and get the error of Invalid Arguments. My question is, is there anyway I can use my memorystream that I created with WebClient.UploadFile to send the file or do I need to do this some other way?

string firstname = Request.Headers["firstname"].ToString();
string lastname = Request.Headers["lastname"].ToString();
string organization = Request.Headers["organization"].ToString();
string phone = Request.Headers["phone"].ToString();

XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
MemoryStream ms = new MemoryStream();
using (XmlWriter xml = XmlWriter.Create(ms, settings))
{
    xml.WriteStartDocument();
    xml.WriteStartElement("List");
    xml.WriteWhitespace("\n");

    xml.WriteStartElement("Employee");
    {
        xml.WriteElementString("First", firstname);
        xml.WriteElementString("Last", lastname);
        xml.WriteWhitespace("\n");
        xml.WriteElementString("Organization", organization);
        xml.WriteElementString("Phone", phone);
    }

    xml.WriteEndElement();
    xml.WriteEndDocument();
}

WebClient client = new WebClient();

client.UploadFile("http://test.com/test.aspx", ms);
  • 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-05-26T13:12:07+00:00Added an answer on May 26, 2026 at 1:12 pm

    EDIT: Edited in 2013 as it looks like it was entirely wrong back when I originally answered…

    Options:

    • Take the byte array from the MemoryStream and use UploadData

      client.UploadData("http://test.com/test.aspx", ms.ToArray());
      
    • Use OpenWrite instead, and write to the stream returned

      using (var stream = client.OpenWrite("http://test.com/test.aspx"))
      {
          using (XmlWriter xml = XmlWriter.Create(stream, settings))
          {
              ...
          }
      }
      
    • Write the data to a file and then use UploadFile

      using (XmlWriter xml = XmlWriter.Create("tmp.xml", settings))
      {
          ...
      }
      client.UploadFile("http://test.com/test.aspx", "tmp.xml");
      // Delete temporary file afterwards
      

    I’d personally go for one of the first two approaches, to avoid the temporary file.

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

Sidebar

Related Questions

I am trying to write a servlet that will send a XML file (xml
I have a problem. I have an XML spreadsheet file that I'm trying to
I am trying to send a simple XML file of the format given in
I am trying to send a SOAP request from a xml file and send
I'm trying to send a request to an API that only accepts XML. I've
I'm trying to send an XML file to a server as part of the
I am trying to use Javascript to transform part of a XML file to
So i am trying to make a function that searches trough an xml file,
I am trying to send raw xml to a service in Python. I have
I am trying to send my dynamically created silverlight 2 page/image to a an

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.