I am using nokogiri ruby gem to parse xml.
<d:abc>19</d:abc>
<d:def m:type="Edm.Double">0</**d:def>
Assuming entry is XML Nokogiri node, using sample xml above. I could easily get the text of abc by using entry.xpath('d:abc').text
How to get the text of def?
Thanks
"d:"and"m:"are bound, are registered with your XPath engine? Otherwise, you'll probably get an error. – Dimitre Novatchev Sep 21 '11 at 4:42