vote up 0 vote down star

hi i have an xml like this

<?xml version="1.0"?>
<DataSetExchangeWMS xmlns="http://tempuri.org/DataSetExchangeWMS.xsd">
  <dtObjektInfo>
    <LanguageCode>1031</LanguageCode>
    <LiegenschaftID>7463</LiegenschaftID>
  </dtObjektInfo>

1040 7463 09

Now as i learned from tutorial i get my xml file and select node from descendant.

now why the first foreache does not work? i need to create complicated queries.

XDocument test = XDocument.Load(Server.MapPath("~/XML/objects.xml"));

var objecte = from i in test.Root.Descendants("dtObjektInfo")
              select i;

// new test with where
        var objecte = from i in test.Descendants( ns + "dtObjektInfo")
                      where i.Element("LanguageCode").Value == "1031"
                      select i;

foreach (var item1 in objecte)
{
    Response.Write(item1.Value);
}

foreach (XElement item in test.Root.Nodes())
{
    Response.Write(item.Value + "<br />");
}
flag

2 Answers

vote up 1 vote down check

You're not using the XML namespace defined in your XML document!

You need to specify the XML namespace when you query your XML:

XNamespace ns = "http://tempuri.org/DataSetExchangeWMS.xsd";

var objecte = from i in test.Root.Descendants(ns + "dtObjektInfo")
              select i;

Marc

link|flag
hmm what should I add – snarebold Nov 6 at 9:16
you need to define the namespace to match the one defined in your XML file, and then use that XNamespace in all your queries – marc_s Nov 6 at 9:19
thank you but still no result. code looks same like yours. – snarebold Nov 6 at 9:21
"Works on my machine" :-) I was able to select and get back a single record - no problem. – marc_s Nov 6 at 9:25
1  
is the file really being loaded into the XDocument? Where did you put the "XNamespace" definition - before or after the XDocument.Load() (it should be after) – marc_s Nov 6 at 9:27
show 5 more comments
vote up 1 vote down

Hi

Marc has basically sorted your issues out, but i thought i'd throw in some consideration. If you have complicated XML, i would suggest using defined objects. it makes things easier in the long run.

for your example

public class dtObjektInfo
    {
        public string LanguageCode { get; set; }
        public string LiegenschaftID { get; set; }
    }

and then your code to call it would turn into

XDocument root = XDocument.Load("c:\\test.xml");
XNamespace ns = "http://tempuri.org/DataSetExchangeWMS.xsd";


dtObjektInfo objecte = (from i in root.Descendants(ns + "dtObjektInfo")

select new dtObjektInfo
{
       LanguageCode = i.Element(ns+"LanguageCode").Value,
       LiegenschaftID = i.Element(ns+"LiegenschaftID").Value 
}).First();

Then you can access the values directly from your dtObjektInfo object. makes coding a lot easier with large xml files as all the work is done in the linq query and then you have a final object.

The benefits of this is that you only have to get the linq right once. coding will be aided by the fact that you are now working with an object whose properties are known (AND INTELLISENSE YAY). all the elements can be cast to the correct types (or exceptions thrown). saving a lot of issues later.

link|flag
Thank you thats nice. And now how define the default namespace. I don't like to implement in each element the namespace. – snarebold Nov 6 at 11:47
I actually use something like this XElement xdb = XElement.Load(XMLPath); XNamespace NameSpace = xdb.Name.Namespace; instead of XDocument.Load(). the same query should work. i think you may not have some methods like Root, but you can treat the element as the root if you're selecting the root node. i've used this approach pretty exhaustively with pretty complicated xml and it works nicely for me – Kamal Nov 6 at 11:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.