From: zxem Date: 2007-11-20T00:50:05+09:00 Subject: xml-mapping lib question? Hi all, I got a xml looking like this. -0.015523356673284 I tried to create a ruby class for it which is used by xml-mapping library. class VolPoint include XML::Mapping text_node :Interp, "@Interp", :default_value=>nil text_node :Strike, "@Strike", :default_value=>nil text_node :OptionType, "@OptionType", :default_value=>nil text_node :VolValue, "text()", :default_value=>nil # Does not work here end But this class could not get the text from VolPoint element(last line of code). Could anyone tell me how to get the value out of the VolPoint? Cheers!