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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:09:22+00:00 2026-05-23T14:09:22+00:00

I am working with Litle’s payment system, and I have to create an XML

  • 0

I am working with Litle’s payment system, and I have to create an XML document, validate it against their XSD, and then transfer it over HTTP post.

Any suggestions?

Currently I’m planning on using the XmlDocument class for XML creation and validation, and still researching what to use to transfer this to the server, and get the response back (which is also in XML).

What would be the best method to use for this?

And no: there is no web-service based API. Just manually formatted XML and post’s. Although if there is some library out there that would automate this it would be hugely helpful.

  • 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-23T14:09:23+00:00Added an answer on May 23, 2026 at 2:09 pm

    You could use a WebClient to send HTTP requests.

    using (var client = new WebClient())
    {
        client.Headers[HttpRequestHeader.ContentType] = "text/xml";
        // you could add any other HTTP request headers that the server expects
    
        // fetch the XML that you want to POST
        string xml = ...
        byte[] data = Encoding.UTF8.GetBytes(xml);
        // POST the XML to the given address
        byte[] result = client.UploadData("http://example.com", data);
    
        // TODO: process the result, for example load it in a XDocument
        using (var stream = new MemoryStream(result))
        using (var reader = XmlReader.Create(stream))
        {
            var doc = XDocument.Load(reader);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a working SOAP::Lite client. It works against an established server, but so
I'm working on a little test application at the minute and I have multiple
I'm working on a little web crawler that will run in the system tray
Recently I've been working a little with MongoDB and I have to say I
I'm working in a little app that needs to parse an XML file. The
I'm working on a little script in Perl and I have problems with parameters
I have little working knowledge of python. I know that there is something called
Im working on a little hobby project. I already have written the code to
I am working on little project to learn jQuery, and I have a twitter
I'm working on a little project, basically I have some text on my PHP/HTML

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.