Read XML tag content as string is possible with talend ?
I need to read the <claims> tag content as it is, but when i read it using talend's tFileInputXML (with SAXparser) inner text content without tag wrapping were lost
INPUT XML
<ipa><us-patent-application> <claims id="claims"> <claim id="CLM-00002" num="00002"> <claim-text><b>2</b>. The controller according to <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the sampling module is arranged to sample the signal indicative of the output current of the SMPS at a frequency that is an integer multiple of the switching frequency of the SMPS.</claim-text> </claim> <claim id="CLM-00003" num="00003"> <claim-text><b>3</b>. The controller according to <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the ripple component estimation module is arranged to estimate the ripple component by use of an interpolated low-pass filter.</claim-text> </claim> </claims> </us-patent-application></ipa>
TALEND JOB
OUTPUT XML After Parsing
<claims id="claims"> <claim id="CLM-00002" num="00002"> <claim-text><b>2</b>. The controller according to <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the sampling module is arranged to sample the signal indicative of the output current of the SMPS at a frequency that is an integer multiple of the switching frequency of the SMPS.</claim-text> </claim> <claim id="CLM-00003" num="00003"> <claim-text><b>3</b>. The controller according to <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the ripple component estimation module is arranged to estimate the ripple component by use of an interpolated low-pass filter.</claim-text> </claim> </claims>
How i read the <claims> XML tag content as it is ?