<?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: tFileOutputXML / tAdvancedFileOutputXML in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308950#M80225</link>
    <description>Ok, for the tAdvancedFileOutputXML, I think there is a bug of compatibility under Linux because when I use TOS under windows,&lt;BR /&gt;the properties are set in a single window where I can drag from linker source and drop to linker target, which is not possible &lt;BR /&gt;under Linux (I have 3 windows).&lt;BR /&gt;Concerning the use of the tFileOutputXML and tAdvancedFileOutputXML components, I still don't know how to obtain the&lt;BR /&gt;xml file described in my previous post.&lt;BR /&gt;So I still need some help, thanks a lot !</description>
    <pubDate>Wed, 24 Oct 2007 13:10:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-10-24T13:10:03Z</dc:date>
    <item>
      <title>tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308949#M80224</link>
      <description>Hi&lt;BR /&gt;I found a problem, maybe a bug with the tAdvancedFileOutputXML component.&lt;BR /&gt;I need to set an attribute named "xmlns" but when I want to add an attribute in the XML Tree, &lt;BR /&gt;this attribute cannot have a name containing any "xml" string, and it is the same&lt;BR /&gt;for the element name.&lt;BR /&gt;&lt;BR /&gt;In facts, with the tFileOutputXML, I can make this:&lt;BR /&gt;In TOS, the properties of the tFileOutputXML are:&lt;BR /&gt;Root tags (only one) : "catalog"&lt;BR /&gt;Row tag : netcdf&lt;BR /&gt;Output format:&lt;BR /&gt;column xmlns , as attribute checked , label = xmlns&lt;BR /&gt;column location , as attribute checked , label = location&lt;BR /&gt;column ncml , as element (as attribute unchecked) , label = ncml&lt;BR /&gt;The result is:&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;catalog&amp;gt;&lt;BR /&gt;    &amp;lt;netcdf xmlns="&lt;A href="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2&lt;/A&gt;"&lt;BR /&gt;            location="/path/to/file.nc"&amp;gt;&lt;BR /&gt;        &amp;lt;ncml&amp;gt;  __NCML__  &amp;lt;/ncml&amp;gt;&lt;BR /&gt;    &amp;lt;/netcdf&amp;gt;&lt;BR /&gt;&amp;lt;/catalog&amp;gt;&lt;BR /&gt;And I would like to have:&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;catalog&amp;gt;&lt;BR /&gt;    &amp;lt;netcdf xmlns="&lt;A href="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2&lt;/A&gt;"                             &lt;BR /&gt;            location="/path/to/file.nc"&amp;gt;&lt;BR /&gt;     __NCML__ &lt;BR /&gt;    &amp;lt;/netcdf&amp;gt;&lt;BR /&gt;&amp;lt;/catalog&amp;gt;&lt;BR /&gt;(__NCML__ is just the string that may be contained into the netcdf element)&lt;BR /&gt;&lt;BR /&gt;The second thing is that I can't find how to use the tAdvancedOutputFileXML component, it seems&lt;BR /&gt;I have to drag and drop items from Schema List but they can't be dropped anywhere.&lt;BR /&gt;I wonder if the tAdvancedFileOutput could help me to generate a XML file like the following&lt;BR /&gt;(I think I can't do it with the tFileOutputXML):&lt;BR /&gt;&amp;lt;catalog name="TEST_NCML" xmlns="&lt;A href="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0&lt;/A&gt;"	 &lt;BR /&gt;               xmlns:xlink="&lt;A href="http://www.w3.org/1999/xlink" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/1999/xlink&lt;/A&gt;"&amp;gt;&lt;BR /&gt;  &amp;lt;service name="latest" serviceType="Resolver" base="" /&amp;gt;&lt;BR /&gt;  &amp;lt;service name="multiService" serviceType="Compound" base=""&amp;gt;&lt;BR /&gt;  &amp;lt;service name="dods" serviceType="OPeNDAP" base="/thredds/dodsC/" /&amp;gt;&lt;BR /&gt;  &amp;lt;/service&amp;gt;&lt;BR /&gt;  &amp;lt;dataset name="Ncml Agregated Static Join Existing" ID="ncmlDatasetAgregatedJoinExistingStatic"&lt;BR /&gt;           urlPath="ncmlDatasetAgregatedJoinExistingStatic"&amp;gt;&lt;BR /&gt;    &amp;lt;metadata&amp;gt;&lt;BR /&gt;      &amp;lt;serviceName&amp;gt;dods&amp;lt;/serviceName&amp;gt;&lt;BR /&gt;      &amp;lt;dataType&amp;gt;Grid&amp;lt;/dataType&amp;gt;&lt;BR /&gt;      &amp;lt;dataFormat&amp;gt;NetCDF&amp;lt;/dataFormat&amp;gt;&lt;BR /&gt;    &amp;lt;/metadata&amp;gt;&lt;BR /&gt;    &amp;lt;netcdf xmlns="&lt;A href="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2&lt;/A&gt;"&amp;gt;&lt;BR /&gt;      &amp;lt;aggregation dimName="time" type="joinExisting"&amp;gt;&lt;BR /&gt;        &amp;lt;variableAgg name="temp" /&amp;gt;&lt;BR /&gt;        &amp;lt;netcdf location="/path/to/file_1.nc" /&amp;gt;&lt;BR /&gt;        &amp;lt;netcdf location="/path/to/file_2.nc" /&amp;gt;&lt;BR /&gt;        &amp;lt;netcdf location="/path/to/file_3.nc" /&amp;gt;&lt;BR /&gt;        &amp;lt;netcdf location="/path/to/file_4.nc" /&amp;gt;&lt;BR /&gt;        &amp;lt;netcdf location="/path/to/file_5.nc" /&amp;gt;&lt;BR /&gt;      &amp;lt;/aggregation&amp;gt;&lt;BR /&gt;    &amp;lt;/netcdf&amp;gt;&lt;BR /&gt;  &amp;lt;/dataset&amp;gt;&lt;BR /&gt;&amp;lt;/catalog&amp;gt;&lt;BR /&gt;Can someone give me some details about the components tFileOutputXML and tAdvancedFileOutputXML&lt;BR /&gt;and how to use them to do that ?&lt;BR /&gt;I'm using the TOS 2.2.0.GA_r6191 version.&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 16 Nov 2024 14:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308949#M80224</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308950#M80225</link>
      <description>Ok, for the tAdvancedFileOutputXML, I think there is a bug of compatibility under Linux because when I use TOS under windows,&lt;BR /&gt;the properties are set in a single window where I can drag from linker source and drop to linker target, which is not possible &lt;BR /&gt;under Linux (I have 3 windows).&lt;BR /&gt;Concerning the use of the tFileOutputXML and tAdvancedFileOutputXML components, I still don't know how to obtain the&lt;BR /&gt;xml file described in my previous post.&lt;BR /&gt;So I still need some help, thanks a lot !</description>
      <pubDate>Wed, 24 Oct 2007 13:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308950#M80225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-24T13:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308951#M80226</link>
      <description>hi,  can I put two tFileOutputXML in a single XML file??</description>
      <pubDate>Wed, 24 Jul 2013 15:12:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308951#M80226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-24T15:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308952#M80227</link>
      <description>Hi maissa rezgui, 
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;hi, can I put two tFileOutputXML in a single XML file??&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Could you please elaborate your case with an example with input and expected output values? 
&lt;BR /&gt;In addition, please create a new post on forum which will give other users an opportunity to help you.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 25 Jul 2013 03:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308952#M80227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-25T03:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308953#M80228</link>
      <description>ok mercii voici mon job et maintenant je veut que la sortie soit dans un seul fichier XML 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBSI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144750iE8D11CBCFBF063D9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBSI.png" alt="0683p000009MBSI.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Sat, 27 Jul 2013 02:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308953#M80228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-27T02:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308954#M80229</link>
      <description>Hi maissa 
&lt;BR /&gt;Maybe the 'append the source xml file' feature on tAdvacedFileOutputXML address your need? I explained this feature and showed a demo job in this topic: 
&lt;BR /&gt; 
&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCofDCAS" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Design-and-Development/Extract-and-aggregate-data-from-2-tables-1-to-many-relationship/td-p/96223&lt;/A&gt; 
&lt;BR /&gt; 
&lt;BR /&gt;Shong</description>
      <pubDate>Sat, 27 Jul 2013 07:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308954#M80229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-27T07:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: tFileOutputXML / tAdvancedFileOutputXML</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308955#M80230</link>
      <description>thank you but I can not display all tables in a single XML file</description>
      <pubDate>Wed, 31 Jul 2013 00:06:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tFileOutputXML-tAdvancedFileOutputXML/m-p/2308955#M80230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-31T00:06:17Z</dc:date>
    </item>
  </channel>
</rss>

