Unable to retreive data from XML using linq to xml with multiple namespaces

Starship

New Member
I am unable to retrieve the data from XML looks like its I might be missing The data I need to retrieve looks like this:\[code\] <rs:data> <z:row billno='B0033582' billdtm='2012-05-21T22:57:02' tab_room=' ' waiter='SUP ' pax='1' discount='.00000000' billdisamt='.00000000' />\[/code\]i am unable to retrive the data because of this \[code\]<z:row\[/code\] vs \[code\]<row\[/code\] Namespace details\[code\]<xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882' xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882' xmlns:rs='urn:schemas-microsoft-com:rowset' xmlns:z='#RowsetSchema'>\[/code\]If i change this to row i can retrieve the data, is it possible to retrieve the row information when the row starts with \[code\]<z:row\[/code\] \[code\]z:\[/code\] is a i guess the namespace reference as given here \[code\]xmlns:z='#RowsetSchema'\[/code\] .Please help me way to get the data out
 
Back
Top