I have this xml:
<root>
<property name="com.jaspersoft.studio.js.ic.path" value="/InputControls/pEnforcementStatusID" xmlns="http://jasperreports.sourceforge.net/jasperreports" />
<property name="com.jaspersoft.studio.js.ic.label" value="Enforcement Status ID" xmlns="http://jasperreports.sourceforge.net/jasperreports" />
<defaultValueExpression xmlns="http://jasperreports.sourceforge.net/jasperreports"><![CDATA[0]]></defaultValueExpression>
</root>
I need to extract the "properties list with name & value", like this:
name="com.jaspersoft.studio.js.ic.path"
with value"/InputControls/pEnforcementStatusID"
name="com.jaspersoft.studio.js.ic.label"
with value"Enforcement Status ID"
I try to do that using xpath, xmlreader, linq to xml without success.