Did you write the xml yourself? I ask because I am having a problem with the attribute
Code:
<catalog name="infibeam">
I would have done it differently:
use tags instead of an attribute.
Code:
<book>
<name>infibeam</name>
<title>cnds</title>
<author>balagurusamy</author>
<company>zseries</company>
<country>america</country>
<price>
<mrp_price>150</mrp_price>
<discount>15%</discount>
</price>
</book>
for eack <book> tag. Easier to render.