Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to compare only specific nodes from two XML files.

Suppose if both the XML structure is as below:

XML 1:

<Species>
    <Human>
        <Number>2</Number>
    </Human>
    <Human>
        <Number>3</Number>
    </Human>
    <Human>
        <Number>10</Number>
    </Human>
    <Bird>
        <Number>20</Number>
    </Bird>
    <Human>
        <Number>8</Number>
    </Human>
</Species>

XML 2:

<Species>
    <Human>
        <Number>2</Number>
    </Human>
    <Bird>
        <Number>2</Number>
    </Bird>
    <Human>
        <Number>8</Number>
    </Human>
    <Human>
        <Number>3</Number>
    </Human>
    <Human>
        <Number>10</Number>
    </Human>
    <Bird>
        <Number>20</Number>
    </Bird>
</Species>

I want to compare all the "Human" nodes, so I will declare an XMLNodeList and populate its values using XMLNode.SelectNode("//Species/Human")

But I can pass only XmlNode in XMLCompare. Also I need to apply IgnoreChildOrders for the XMLDiffPatch tool : I am using "Compare" method.

How do I pass a XmlNodeList to Compare method?

share|improve this question
1  
So what code have you tried to achieve this "question", and how did it not work? – canadiancreed Aug 21 '11 at 4:59
Right now, I have all the "Human" Subnodes from <Species> using XMLNode.SelectNodes("//Species/Human"). The return type of this is XmlNodeList. But the arguments that XMLDiff.Compare takes is: XMLDiff.Compare(XmlNode node1,XmlNode node2,Comparefragments). For this, how can I pass a XMLNodeList instead of XmlNode. I will try to convert XmlNodeList into XmlNode[]. But is XmlNode = XmlNode[]. (Are they both same). What are the different options. – AshRam Aug 21 '11 at 5:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.