<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Help on parsing a XML Document in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244081#M30356</link>
    <description>&lt;P&gt;Need help to parse ID and Name from below xml&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="ISO-8859-15"?&amp;gt;
&amp;lt;root&amp;gt;
&amp;lt;row&amp;gt;
&amp;lt;Soap&amp;gt;&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
&amp;lt;soap:Body&amp;gt;
&amp;lt;GetFilteredCustomReportResponse xmlns="abcIP"&amp;gt;
&amp;lt;GetFilteredCustomReportResult&amp;gt;
&amp;lt;DtoObject&amp;gt;
&amp;lt;ReportData&amp;gt;[{"ID":1,"Name":"Active"},{"ID":3,"Name":"Canceled"}]&amp;lt;/ReportData&amp;gt;
&amp;lt;NumberOfPages&amp;gt;1&amp;lt;/NumberOfPages&amp;gt;
&amp;lt;/DtoObject&amp;gt;
&amp;lt;Response&amp;gt;Successful&amp;lt;/Response&amp;gt;
&amp;lt;Successful&amp;gt;true&amp;lt;/Successful&amp;gt;
&amp;lt;/GetFilteredCustomReportResult&amp;gt;
&amp;lt;/GetFilteredCustomReportResponse&amp;gt;
&amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;
&amp;lt;/Soap&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/root&amp;gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 14 May 2019 16:56:31 GMT</pubDate>
    <dc:creator>Karuetl</dc:creator>
    <dc:date>2019-05-14T16:56:31Z</dc:date>
    <item>
      <title>Help on parsing a XML Document</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244081#M30356</link>
      <description>&lt;P&gt;Need help to parse ID and Name from below xml&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="ISO-8859-15"?&amp;gt;
&amp;lt;root&amp;gt;
&amp;lt;row&amp;gt;
&amp;lt;Soap&amp;gt;&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
&amp;lt;soap:Body&amp;gt;
&amp;lt;GetFilteredCustomReportResponse xmlns="abcIP"&amp;gt;
&amp;lt;GetFilteredCustomReportResult&amp;gt;
&amp;lt;DtoObject&amp;gt;
&amp;lt;ReportData&amp;gt;[{"ID":1,"Name":"Active"},{"ID":3,"Name":"Canceled"}]&amp;lt;/ReportData&amp;gt;
&amp;lt;NumberOfPages&amp;gt;1&amp;lt;/NumberOfPages&amp;gt;
&amp;lt;/DtoObject&amp;gt;
&amp;lt;Response&amp;gt;Successful&amp;lt;/Response&amp;gt;
&amp;lt;Successful&amp;gt;true&amp;lt;/Successful&amp;gt;
&amp;lt;/GetFilteredCustomReportResult&amp;gt;
&amp;lt;/GetFilteredCustomReportResponse&amp;gt;
&amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;
&amp;lt;/Soap&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/root&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 May 2019 16:56:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244081#M30356</guid>
      <dc:creator>Karuetl</dc:creator>
      <dc:date>2019-05-14T16:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help on parsing a XML Document</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244082#M30357</link>
      <description>&lt;P&gt;You would first have to parse the XML to get the contents of the ReportData element as a string.&amp;nbsp; Those contents are JSON.&amp;nbsp; You would then parse those contents to get the id and name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Look at tExtractXMLFields for the former and tExtractJSONFields for the latter.&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2019 18:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244082#M30357</guid>
      <dc:creator>nfz11</dc:creator>
      <dc:date>2019-05-14T18:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help on parsing a XML Document</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244083#M30358</link>
      <description>&lt;P&gt;in tFileInputXML&amp;nbsp;&lt;/P&gt;&lt;P&gt;What should be&amp;nbsp; the Column and Xpath Query under mapping&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2019 18:25:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-on-parsing-a-XML-Document/m-p/2244083#M30358</guid>
      <dc:creator>Karuetl</dc:creator>
      <dc:date>2019-05-14T18:25:55Z</dc:date>
    </item>
  </channel>
</rss>

