<?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: [resolved] tXMLMap - catch errors/exceptions in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214813#M11513</link>
    <description>I find it very weird also, I was expecting it to correctly print according to the ok/error row. 
&lt;BR /&gt;Anyways here is my job layout: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBNG.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133576i2D797C332C38A4BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBNG.png" alt="0683p000009MBNG.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;My 
&lt;B&gt;tMap &lt;/B&gt;component has the parsing and formatting conditions, with the die on error unticked: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCWo.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157379i7F4A9CC804243B8D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCWo.png" alt="0683p000009MCWo.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;And my 
&lt;B&gt;tXMLMap &lt;/B&gt;is a straight auto-map into the XML structure: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCRp.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152928i07243F8ED5F5F6A9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCRp.png" alt="0683p000009MCRp.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Is there some hidden or inconspicuous setting that I might have missed or is this some Talend bug?</description>
    <pubDate>Thu, 03 Dec 2015 09:55:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-12-03T09:55:56Z</dc:date>
    <item>
      <title>[resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214797#M11497</link>
      <description>Hi guys, 
&lt;BR /&gt;I have a small Talend job that reads CSVs and makes an XML from its rows, then moves the CSVs in an archive folder afterwards. 
&lt;BR /&gt;Im having a problem trying to catch CSVs with errors, the job stops and doesnt continue on the other CSVs afterwards. 
&lt;BR /&gt;How can I catch the errors in the XML mapping and be able to move that certain CSV, then continue with the other CSVs in processing them?</description>
      <pubDate>Fri, 27 Nov 2015 02:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214797#M11497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T02:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214798#M11498</link>
      <description>Hi &amp;nbsp;&lt;BR /&gt;You need to design the job as below:&lt;BR /&gt;main job:&lt;BR /&gt;tFileList--iterate--trunjob&lt;BR /&gt;trunJob: call the child job, pass the current file path to the child job, uncheck the 'die on error' option so that the main job can continue to process the next file even though the child job has an error.&amp;nbsp;&lt;BR /&gt;child job:&lt;BR /&gt;tFileInputDelimited--main--tXMLMap--tLogRow&lt;BR /&gt;Fefer to this KB &lt;A href="https://help.talend.com/pages/viewpage.action?pageId=190513193" target="_blank" rel="nofollow noopener noreferrer"&gt;article&lt;/A&gt; to know how to pass a value from main job to child job.&amp;nbsp;&lt;BR /&gt;Let me know if you have any problems.</description>
      <pubDate>Fri, 27 Nov 2015 03:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214798#M11498</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T03:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214799#M11499</link>
      <description>Does this mean I will have 2 Talend Jobs now?&lt;BR /&gt;Is there another workaround that only involved 1 job? Because this will be built as a standalone job that will be schedule using a script.</description>
      <pubDate>Fri, 27 Nov 2015 03:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214799#M11499</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T03:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214800#M11500</link>
      <description>Hi
&lt;BR /&gt;Strictly speaking, they are not entirely separate jobs, they are not entirely separate jobs, the child job is called by the main job, you just need to export the job script of main job as a standalone job and schedule it.&amp;nbsp;</description>
      <pubDate>Fri, 27 Nov 2015 03:29:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214800#M11500</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T03:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214801#M11501</link>
      <description>Hello,
&lt;BR /&gt;Unfortunately my manager/in-charge does not want the job to change that much anymore, he just wants to have a way to continue processing other CSV rows and files after encountering an error in a certain CSV. Would this be possible without altering the job that much?
&lt;BR /&gt;Can I catch/bypass a row/file error and continue with the other rows and files in the folder?</description>
      <pubDate>Fri, 27 Nov 2015 04:23:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214801#M11501</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T04:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214802#M11502</link>
      <description>Hi &lt;BR /&gt;If the error occurs on tFileInputDelimited component,  unchecking the 'die on error' option on tFileInputDelimited will allow the job to continue to read other rows and files, but the error messages can't be captured by tLogCatcher component with this way.</description>
      <pubDate>Fri, 27 Nov 2015 09:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214802#M11502</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T09:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214803#M11503</link>
      <description>The error is in the tXMLMap, when it attempts to substring invalid/null fields. How can I catch those?</description>
      <pubDate>Fri, 27 Nov 2015 09:25:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214803#M11503</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T09:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214804#M11504</link>
      <description>There is a way you can trap the errors in the tXMLMap and continue...well, actually you will need to add a tMap before the tXMLMap and put the logic from the tXMLMap into the tMap. This is because for some reason the functionality I demonstrate in this 
&lt;A href="https://www.rilhia.com/quicktips/quick-tip-how-debug-tmap-errors" target="_blank" rel="nofollow noopener noreferrer"&gt;link&lt;/A&gt;&amp;nbsp;is not available in the tXMLMap.&amp;nbsp; 
&lt;BR /&gt;Why is that Shong?</description>
      <pubDate>Fri, 27 Nov 2015 10:20:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214804#M11504</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T10:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214805#M11505</link>
      <description>Hi rhall_2.0
&lt;BR /&gt;I agree with you that tMap can be used to trace the error and continue to process the next rows if the error is not an I/O error occurred on input/output component.&amp;nbsp;</description>
      <pubDate>Fri, 27 Nov 2015 10:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214805#M11505</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T10:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214806#M11506</link>
      <description>Why is that functionality not available in the tXMLMap?&amp;nbsp;</description>
      <pubDate>Fri, 27 Nov 2015 11:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214806#M11506</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-27T11:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214807#M11507</link>
      <description>A new feature has been reported in bugtracker, see&amp;nbsp;
&lt;BR /&gt;
&lt;A href="https://jira.talendforge.org/browse/TDI-18968" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TDI-18968&lt;/A&gt;</description>
      <pubDate>Sat, 28 Nov 2015 04:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214807#M11507</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-28T04:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214808#M11508</link>
      <description>I see, so my job layout should now be . . .&lt;BR /&gt;&lt;B&gt;&lt;U&gt;Before:&lt;/U&gt;&lt;/B&gt;&lt;BR /&gt;tFileList &lt;I&gt;--(iterate)-- &lt;/I&gt;iFileInputDelimited &lt;I&gt;--(row)--&lt;/I&gt; tXMLMap&lt;BR /&gt;&lt;B&gt;&lt;U&gt;After:&lt;/U&gt;&lt;/B&gt;&lt;BR /&gt;tFileList &lt;I&gt;--(iterate)--&lt;/I&gt; iFileInputDelimited &lt;I&gt;--(row)--&lt;/I&gt; tMap&lt;I&gt; --(row)--&lt;/I&gt; tXMLMap&lt;BR /&gt;Where tMap now has the formatting codes and tXMLMap is merely assigning the fields to their respective XML elements, is that correct?</description>
      <pubDate>Mon, 30 Nov 2015 09:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214808#M11508</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-30T09:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214809#M11509</link>
      <description>Yes, that is the way that I would attempt this to make use of the tMap error logging functionality.</description>
      <pubDate>Mon, 30 Nov 2015 09:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214809#M11509</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-30T09:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214810#M11510</link>
      <description>Okay thanks for the suggestion, will try this out and update this topic accordingly.</description>
      <pubDate>Tue, 01 Dec 2015 10:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214810#M11510</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T10:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214811#M11511</link>
      <description>Hello, 
&lt;BR /&gt;I am now able to continue after encountering a row error. Thanks rhall_2.0 and shong. 
&lt;BR /&gt;Unfortunately if consecutive errors are shown as 1 when I try to print something in the ErrorReject row. 
&lt;BR /&gt;Also, it ignores the first okay row after encountering an error row/group of error rows. 
&lt;BR /&gt;For example, this is my csv file: 
&lt;BR /&gt;- headers 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- error row 
&lt;BR /&gt;- error row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- error row 
&lt;BR /&gt;- error row 
&lt;BR /&gt;- error row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;- ok row 
&lt;BR /&gt;It prints the following: 
&lt;BR /&gt;- ok 
&lt;BR /&gt;- ok 
&lt;BR /&gt;- ok 
&lt;BR /&gt;- error (should be 2 times) 
&lt;BR /&gt;- ok 
&lt;BR /&gt;- ok (should be 3 times together with previous print) 
&lt;BR /&gt;- error (should be 3 times) 
&lt;BR /&gt;- ok (should be 2 times) 
&lt;BR /&gt;How can I make it print "error" for each instance of the error row, and not as a group of consecutive error rows?</description>
      <pubDate>Thu, 03 Dec 2015 08:07:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214811#M11511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T08:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214812#M11512</link>
      <description>This is very odd. Can you take a screenshot of your job, your tMap configuration and the following tXMLMap config?</description>
      <pubDate>Thu, 03 Dec 2015 09:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214812#M11512</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T09:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214813#M11513</link>
      <description>I find it very weird also, I was expecting it to correctly print according to the ok/error row. 
&lt;BR /&gt;Anyways here is my job layout: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBNG.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133576i2D797C332C38A4BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBNG.png" alt="0683p000009MBNG.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;My 
&lt;B&gt;tMap &lt;/B&gt;component has the parsing and formatting conditions, with the die on error unticked: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCWo.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157379i7F4A9CC804243B8D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCWo.png" alt="0683p000009MCWo.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;And my 
&lt;B&gt;tXMLMap &lt;/B&gt;is a straight auto-map into the XML structure: 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCRp.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152928i07243F8ED5F5F6A9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCRp.png" alt="0683p000009MCRp.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Is there some hidden or inconspicuous setting that I might have missed or is this some Talend bug?</description>
      <pubDate>Thu, 03 Dec 2015 09:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214813#M11513</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T09:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214814#M11514</link>
      <description>Where is the code written in the tJavaFlex component logging the errors?&amp;nbsp;
&lt;BR /&gt;In your tXMLMap output table settings (click the spanner symbol), do you have "All in one" selected? This allows one XML file to be written containing several loops as opposed to a separate XML for every row.
&lt;BR /&gt;Maybe try connecting you tMap outputs to tLogRow components (instead of the tJavaFlex and tXMLMap) and and see what comes out from there. You should be seeing something for every row.</description>
      <pubDate>Thu, 03 Dec 2015 10:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214814#M11514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T10:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214815#M11515</link>
      <description>&lt;B&gt;Where is the code written in the tJavaFlex component logging the errors?&amp;nbsp;&lt;/B&gt;
&lt;BR /&gt;It is in the tJavaFlex_7, the one connected with ErrorReject row from the tMap
&lt;BR /&gt;
&lt;B&gt;In your tXMLMap output table settings (click the spanner symbol), do you have "All in one" selected? This allows one XML file to be written containing several loops as opposed to a separate XML for every row.&lt;/B&gt;
&lt;BR /&gt;I have set "All in one" into false because I have to generate 1 XML per row read from the CSV.
&lt;BR /&gt;
&lt;B&gt;Maybe try connecting you tMap outputs to tLogRow components (instead of the tJavaFlex and tXMLMap) and and see what comes out from there. You should be seeing something for every row.&lt;/B&gt;
&lt;BR /&gt;Only 1 instance of tLogRow output gets printed instead of the 2 or 3 consecutive for the error rows. Same goes for the ok rows.</description>
      <pubDate>Thu, 03 Dec 2015 10:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214815#M11515</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T10:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tXMLMap - catch errors/exceptions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214816#M11516</link>
      <description>ADDITIONAL: 
&lt;BR /&gt;My job also shows that it processed 8 rows, with 6 ok and 2 error when instead it should be 13 rows with 8 ok and 5 errors. No limit has been set. 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCWt.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142711iEDF55AE14BBBBCFB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCWt.png" alt="0683p000009MCWt.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Thu, 03 Dec 2015 10:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tXMLMap-catch-errors-exceptions/m-p/2214816#M11516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T10:25:12Z</dc:date>
    </item>
  </channel>
</rss>

