<?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 Re: tFileInputXML xpath expression limitation issue in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221125#M15258</link>
    <description>The above post did not help me to solve the problems what the others have quoted previously any help would be appreciated regarding processing complex xml files</description>
    <pubDate>Wed, 29 May 2013 12:14:42 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2013-05-29T12:14:42Z</dc:date>
    <item>
      <title>tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221114#M15247</link>
      <description>I am having trouble with the tFileInputXML(FIX) component. I have an XML file that I believe will need to be processed by more than one FIX because it has multiple nested elements. My plan is to process that XML file and store it in a database. As of right now I will have an individual table for each nest level in the XML file. Each of the nested data elements will have an index that will reference it back to its parent, which came from the XML file. Is this the best way to store the data? 
&lt;BR /&gt;The XML file looks like this: 
&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="ISO-8859-1"?&amp;gt; 
&lt;BR /&gt;&amp;lt;?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?&amp;gt; 
&lt;BR /&gt;&amp;lt;catalog&amp;gt; 
&lt;BR /&gt; &amp;lt;cd&amp;gt; 
&lt;BR /&gt; &amp;lt;title&amp;gt;Empire Burlesque&amp;lt;/title&amp;gt; 
&lt;BR /&gt; &amp;lt;artist&amp;gt; 
&lt;BR /&gt; &amp;lt;name&amp;gt;Bob Dylan&amp;lt;/name&amp;gt; 
&lt;BR /&gt; &amp;lt;name&amp;gt;Fake Name&amp;lt;/name&amp;gt; 
&lt;BR /&gt; &amp;lt;/artist&amp;gt; 
&lt;BR /&gt; &amp;lt;country&amp;gt;USA&amp;lt;/country&amp;gt; 
&lt;BR /&gt; &amp;lt;company&amp;gt;Columbia&amp;lt;/company&amp;gt; 
&lt;BR /&gt; &amp;lt;price&amp;gt;10.90&amp;lt;/price&amp;gt; 
&lt;BR /&gt; &amp;lt;year&amp;gt;1985&amp;lt;/year&amp;gt; 
&lt;BR /&gt; &amp;lt;/cd&amp;gt; 
&lt;BR /&gt; &amp;lt;cd&amp;gt; 
&lt;BR /&gt; &amp;lt;title&amp;gt;Hide your heart&amp;lt;/title&amp;gt; 
&lt;BR /&gt; &amp;lt;artist&amp;gt; 
&lt;BR /&gt; &amp;lt;name&amp;gt;Bonnie Tyler&amp;lt;/name&amp;gt; 
&lt;BR /&gt; &amp;lt;/artist&amp;gt; 
&lt;BR /&gt; &amp;lt;country&amp;gt;UK&amp;lt;/country&amp;gt; 
&lt;BR /&gt; &amp;lt;company&amp;gt;CBS Records&amp;lt;/company&amp;gt; 
&lt;BR /&gt; &amp;lt;price&amp;gt;9.90&amp;lt;/price&amp;gt; 
&lt;BR /&gt; &amp;lt;year&amp;gt;1988&amp;lt;/year&amp;gt; 
&lt;BR /&gt; &amp;lt;/cd&amp;gt; 
&lt;BR /&gt; &amp;lt;cd&amp;gt; 
&lt;BR /&gt; &amp;lt;title&amp;gt;Greatest Hits&amp;lt;/title&amp;gt; 
&lt;BR /&gt; &amp;lt;artist&amp;gt; 
&lt;BR /&gt; &amp;lt;name&amp;gt;Dolly Parton&amp;lt;/name&amp;gt; 
&lt;BR /&gt; &amp;lt;/artist&amp;gt; 
&lt;BR /&gt; &amp;lt;country&amp;gt;USA&amp;lt;/country&amp;gt; 
&lt;BR /&gt; &amp;lt;company&amp;gt;RCA&amp;lt;/company&amp;gt; 
&lt;BR /&gt; &amp;lt;price&amp;gt;9.90&amp;lt;/price&amp;gt; 
&lt;BR /&gt; &amp;lt;year&amp;gt;1982&amp;lt;/year&amp;gt; 
&lt;BR /&gt; &amp;lt;/cd&amp;gt; 
&lt;BR /&gt;&amp;lt;/catalog&amp;gt; 
&lt;BR /&gt;The &amp;lt;cd&amp;gt; and &amp;lt;name&amp;gt; tags repeat. Because I cannot have more than one xpath look in the FIX I figure I have to use two FIX components to pull this data out. Correct me if I am wrong. 
&lt;BR /&gt;So if all this is correct. How do I associate the two FIX input streams with each other so when I place then in the DB I can give them the correct index to find their parent element? How can I retain that parent/child relationship as I process the file in different FIXs?</description>
      <pubDate>Sat, 16 Nov 2024 14:27:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221114#M15247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221115#M15248</link>
      <description>I found a solution by splitting up the jobs. I read one level of the XML doc. Dump that in to the DB. Then read the next level using the DB to reference the data from the first XML pull.
&lt;BR /&gt;Anyone else have this sort of problem? I would think most people working with XML would have issues with the single loop aspect of the FIX. Is there a better way to deal with this?</description>
      <pubDate>Fri, 08 Feb 2008 19:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221115#M15248</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-08T19:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221116#M15249</link>
      <description>Calling all cars. Calling all cars.
&lt;BR /&gt;Anyone processing complex XML docs running into this problem also?</description>
      <pubDate>Mon, 11 Feb 2008 19:18:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221116#M15249</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-11T19:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221117#M15250</link>
      <description>Hello, &lt;BR /&gt;I don't really understand your problem : your XML file is not very complicate.&lt;BR /&gt;Can't you simply loop on the name element ?</description>
      <pubDate>Mon, 11 Feb 2008 20:10:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221117#M15250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-11T20:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221118#M15251</link>
      <description>Hi, 
&lt;BR /&gt; 
&lt;BR /&gt;Leading on from this, what if there are several nested areas within the same record, do you need to read the file with a different loop each time ? 
&lt;BR /&gt; 
&lt;BR /&gt;Screenshot ..... 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBhm.gif"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151324i0D01C50AA631E873/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBhm.gif" alt="0683p000009MBhm.gif" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 13 Jun 2008 10:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221118#M15251</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-13T10:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221119#M15252</link>
      <description>Hi,  just keeping this near the top in case anyone can help.
&lt;BR /&gt;
&lt;BR /&gt;Cheers.</description>
      <pubDate>Mon, 16 Jun 2008 09:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221119#M15252</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-16T09:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221120#M15253</link>
      <description>Hi, 
&lt;BR /&gt;I have the same problem with an xml complex file,I can't parse my xml file in one tFileInputxml component because the Xpath loop expression don't support more than one node in my metadata xml file definition. 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt; 
&lt;BR /&gt;&amp;lt;osm version="0.5" generator="OpenStreetMap server"&amp;gt; 
&lt;BR /&gt; &amp;lt;node id="256554151" lat="48.1416263" lon="11.5411444" user="Schusch" visible="true" timestamp="2008-04-09T10:54:40+01:00"&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="created_by" v="JOSM"/&amp;gt; 
&lt;BR /&gt; &amp;lt;/node&amp;gt; 
&lt;BR /&gt; &amp;lt;node id="267508462" lat="48.1406333" lon="11.5421018" user="bugmenot" visible="true" timestamp="2008-05-30T14:46:43+01:00"/&amp;gt; 
&lt;BR /&gt; &amp;lt;node id="21585826" lat="48.1449059" lon="11.5411711" user="Jens" visible="true" timestamp="2006-12-14T23:22:36+00:00"&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="created_by" v="JOSM"/&amp;gt; 
&lt;BR /&gt; &amp;lt;/node&amp;gt; 
&lt;BR /&gt; &amp;lt;node id="21040289" lat="48.1461793" lon="11.5362042" user="3247" visible="true" timestamp="2008-02-10T13:05:36+00:00"&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="created_by" v="JOSM"/&amp;gt; 
&lt;BR /&gt; &amp;lt;node id="268472657" lat="48.143901" lon="11.5382652" user="Gerd Badur" visible="true" timestamp="2008-06-04T19:05:02+01:00"/&amp;gt; 
&lt;BR /&gt; &amp;lt;way id="4020271" visible="true" timestamp="2007-07-13T09:52:50+01:00" user="user_4133"&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21324374"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21324376"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="398692"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21324380"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21324381"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21324382"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="398710"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="21040296"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="245353"/&amp;gt; 
&lt;BR /&gt; &amp;lt;nd ref="245339"/&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="highway" v="secondary"/&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="created_by" v="JOSM"/&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="name" v="Arnulfstraße"/&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="lanes" v="2"/&amp;gt; 
&lt;BR /&gt; &amp;lt;tag k="oneway" v="true"/&amp;gt; 
&lt;BR /&gt; &amp;lt;/way&amp;gt; 
&lt;BR /&gt;&amp;lt;/osm&amp;gt;</description>
      <pubDate>Mon, 16 Jun 2008 12:44:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221120#M15253</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-16T12:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221121#M15254</link>
      <description>Hi,
&lt;BR /&gt;
&lt;BR /&gt;Still looking for an answer if anyone can help.</description>
      <pubDate>Sat, 21 Jun 2008 08:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221121#M15254</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-21T08:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221122#M15255</link>
      <description>still outstanding, is there an official support email address ?</description>
      <pubDate>Mon, 07 Jul 2008 18:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221122#M15255</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-07-07T18:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221123#M15256</link>
      <description>I have the same problem...</description>
      <pubDate>Wed, 22 Aug 2012 01:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221123#M15256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-22T01:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221124#M15257</link>
      <description>For detailed explanation of reading and processing XML file with multiple nested loops visit the blog post 
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;&lt;A href="http://vikramtakkar.blogspot.in/2013/02/read-xml-having-multiple-nested-loops.html" rel="nofollow noopener noreferrer"&gt;http://vikramtakkar.blogspot.in/2013/02/read-xml-having-multiple-nested-loops.html&lt;/A&gt;&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 27 Feb 2013 07:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221124#M15257</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-27T07:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: tFileInputXML xpath expression limitation issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221125#M15258</link>
      <description>The above post did not help me to solve the problems what the others have quoted previously any help would be appreciated regarding processing complex xml files</description>
      <pubDate>Wed, 29 May 2013 12:14:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileInputXML-xpath-expression-limitation-issue/m-p/2221125#M15258</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2013-05-29T12:14:42Z</dc:date>
    </item>
  </channel>
</rss>

