Giving this kind of XML file :
<data>
<row val="3"/>
<row val="7"/>
<row val="2"/>
<row val="4"/>
<row val="3"/>
</data>
I need to retrieve the string '3;7;2;4;3' using XPath 1.0 so that I can create dynamic links for the Google Chart service in my XForms application.
How can I do that ? Is it possible ?