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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:31:42+00:00 2026-05-18T07:31:42+00:00

I am using XML reader class and I have made the folowing example. XmlReader

  • 0

I am using XML reader class and I have made the folowing example.

        XmlReader xmlreader = XmlReader.Create("http://adomain/companies.xml");

        while (xmlreader.ReadToFollowing("company"))
        {
            Console.WriteLine("Company {0}",xmlreader.ReadElementContentAsString());

            if (xmlreader.ReadToFollowing("employees"))
            {
                Console.WriteLine("Employees{0}", xmlreader.ReadElementContentAsString());
            }
            Console.WriteLine();
        }

The code works fine when the XML has carriage returns results like the following

Company Web Spiders Co
Employees20

Company Google
Employees20000

Company Simons Gremlin Web Design
Employees1

with xml like this

<?xml version="1.0" encoding="UTF-8"?>
<companies>
<company>Web Spiders Co</company>
<employees>20</employees>
<company>Google</company>
<employees>20000</employees>
<company>Simons Gremlin Web Design</company>
<employees>1</employees>
</companies>

however when I remove the linebreaks from the XML

i.e.
<?xml version="1.0" encoding="UTF-8"?>
<companies>
<company>Web Spiders Co</company>
<employees>20</employees>
<company>Google</company>
<employees>20000</employees>
<company>Simons Gremlin Web Design</company>
<employees>1</employees>
</companies>

then the xmlreader starts to skip over elements and my result set looks very different

e.g.

Company Web Spiders Co
Employees20000

I don’t really understand why this is happening, and why the XML reader behaves in this way.

  • 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-18T07:31:42+00:00Added an answer on May 18, 2026 at 7:31 am

    This is failing because when you have the newlines, there is an extra node of type Whitespace, which makes your logic work correctly. Without the newlines and these extra nodes seen by the reader, the auto-skipping to next element done by the ReadElementContentAsString messes things up.

    This works for both – here, you check whether you are already at the desired spot before getting the element content, and only move if you are not already there.

    XmlReader xmlreader = XmlReader.Create(@"..\..\test.xml.txt");
    
    while ((xmlreader.Name == "company") || xmlreader.ReadToFollowing("company"))
    {
        Console.WriteLine("Company {0}", xmlreader.ReadElementContentAsString());
    
        if ((xmlreader.Name == "employees") || xmlreader.ReadToFollowing("employees"))
        {
            Console.WriteLine("Employees{0}", xmlreader.ReadElementContentAsString());
        }
        Console.WriteLine();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML reader class which I initialize with a URL - (id)initWithURL:(NSURL
I have a class that serializes a set of objects (using XML serialization) that
I am using XmlReader in .NET to parse an XML file using a loop:
I am parsing XML with an XMLReader using a XMLReaderSettings object with the event
I have a VS2008 solution using xml documentation, and we have warnings as errors
How to create a calendar using XML
Is it best to create sharepoint lists in a feature using xml (schema.xml) or
In the following snippet, using XmlReader, when I encounter an element. I would like
I am using XML minidom (xml.dom.minidom) in Python, but any error in the XML
I am using xml.net in web application When I try load xml through 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.