<?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: Qlikview EDX and SSIS Issues in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471130#M1273907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Just to let anybody who has this issue know that I found a solution. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;I have now coded an Error Handler within the QMSEDX.exe that has successfully neutralized that &lt;STRONG&gt;Process Error Code 255&lt;/STRONG&gt;. &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;When the error now occurs, the Error Handler successfully catches the error and retries the polling process. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if ye have any queries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;Please see below the C# Code needed to implement this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;----------------Code ---------------------------------------------------------&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;try&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; TraceMessage(&lt;SPAN style="color: #2b91af;"&gt;TraceLevel&lt;/SPAN&gt;.Info, &lt;SPAN style="color: #2b91af;"&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN style="color: #a31515;"&gt;"Successfully started task with id/name={0}"&lt;/SPAN&gt;, _taskIdOrName));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt; mainTaskResult = PollSingleTask(client, triggerResult.ExecId, _pollIntervall, _timeout);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt;&amp;gt; triggeredEDXStatuses = MonitorTriggeredTasks(client, mainTaskResult.TriggeredTasksId);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; totalResult = AnalyseResult(mainTaskResult, triggeredEDXStatuses);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (&lt;SPAN style="color: #2b91af;"&gt;Exception&lt;/SPAN&gt; ex)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.Message);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.Source);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.InnerException);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.HelpLink);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Trying Again"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; TraceMessage(&lt;SPAN style="color: #2b91af;"&gt;TraceLevel&lt;/SPAN&gt;.Info, &lt;SPAN style="color: #2b91af;"&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN style="color: #a31515;"&gt;"Re-Initialised Communication With id/name={0}"&lt;/SPAN&gt;, _taskIdOrName));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt; mainTaskResult = PollSingleTask(client, triggerResult.ExecId, _pollIntervall, _timeout);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Polling Complete"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt;&amp;gt; triggeredEDXStatuses = MonitorTriggeredTasks(client, mainTaskResult.TriggeredTasksId);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Monitored Trigger Tasks Complete"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; totalResult = AnalyseResult(mainTaskResult, triggeredEDXStatuses);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2012 14:05:04 GMT</pubDate>
    <dc:creator>obriened83</dc:creator>
    <dc:date>2012-12-21T14:05:04Z</dc:date>
    <item>
      <title>Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471123#M1273894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I was wondering if anyone could help me. Is it possible to end a task using a &lt;STRONG&gt;EDX &lt;/STRONG&gt;commnad? &lt;/P&gt;&lt;P&gt;We are currently testing &lt;STRONG&gt;Qlikview 11&lt;/STRONG&gt; using a &lt;STRONG&gt;SSIS &lt;/STRONG&gt;package system and we are encountering problems where the &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EDX executable file &lt;/STRONG&gt;quits unexpectedly but the &lt;STRONG&gt;Qlikview Task&lt;/STRONG&gt; remains running on the Qlikview Server. &lt;/P&gt;&lt;P&gt;Would anyone know in anyway in how to overcome this issue? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much appreiciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eamonn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471123#M1273894</guid>
      <dc:creator>obriened83</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471124#M1273897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What version of QlikView are you running?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 15:57:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471124#M1273897</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2012-11-27T15:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471125#M1273899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bill&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am running Qlikview 11 SR 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eamonn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 16:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471125#M1273899</guid>
      <dc:creator>obriened83</dc:creator>
      <dc:date>2012-11-27T16:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471126#M1273901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have seen this issue in some cases, and not solved it yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i&amp;nbsp; thougt about a solution, that might helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using a SSIS execute process task and execute the QMSEDX.exe file you could try to add a timeout parameter that is longer that the expected total reload time of your QlikView task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QMSEDX.exe &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-qms="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://localhost:4799/qms/service"&gt;http://localhost:4799/qms/service&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;-task="taskname"&lt;BR /&gt;-timeout=600&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if it works, cause i &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Henrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 16:50:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471126#M1273901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-27T16:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471127#M1273903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Henrik&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for getting back to me on this. The issue lies in that the &lt;STRONG&gt;SISS &lt;/STRONG&gt;executes the &lt;STRONG&gt;EDX &lt;/STRONG&gt;with a Timeout setting of 3 hours. What happens is that the &lt;STRONG&gt;EDX &lt;/STRONG&gt;quits unexpectedly and returns a process error code of &lt;STRONG&gt;255 &lt;/STRONG&gt;to &lt;STRONG&gt;SSIS &lt;/STRONG&gt;but the Qlikview Console contines to run the &lt;STRONG&gt;Job &lt;/STRONG&gt;until it has completed. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Is there a &lt;STRONG&gt;Job Kill &lt;/STRONG&gt;command that we could use that if &lt;STRONG&gt;SSIS &lt;/STRONG&gt;recieves that &lt;STRONG&gt;255 &lt;/STRONG&gt;process error, it could execute another process Task that that would &lt;STRONG&gt;end &lt;/STRONG&gt;that job?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Please let me know what you think?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Kind Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Eamonn&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 16:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471127#M1273903</guid>
      <dc:creator>obriened83</dc:creator>
      <dc:date>2012-11-28T16:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471128#M1273905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #333333; font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;; font-size: 10pt; mso-ansi-language: EN-US;"&gt;As I see it, you can do either, in your SSIS environment:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #333333; font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;; font-size: 10pt; mso-ansi-language: EN-US;"&gt;1) Set FailTaskIfReturnCodeIsNotSuccesValue=False and then accept the error.&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;; font-size: 10pt; mso-no-proof: yes;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="color: #333333; font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;; font-size: 10pt; mso-ansi-language: EN-US;"&gt;2) Set FailTaskIfReturnCodeIsNotSuccesValue=False and catch the return code in a variable and the create your own error-handling in SSIS, where you specific handle code 255&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #333333; font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;; font-size: 10pt; mso-ansi-language: EN-US;"&gt;3) Make a add to your Qlikview script, where you tell the SQL server ETL job that QlikView has finish ok. You can create a store procedure for this an use this in a load statement in QlikView. In this case you should also set FailTaskIfReturnCodeIsNotSuccesValue=False&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Henrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 18:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471128#M1273905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-28T18:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471129#M1273906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Hi Henrik&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This is a very good workaround but ideally we would love to be able to kill the job from &lt;STRONG&gt;SISS&lt;/STRONG&gt; either through a direct command or an executable file. The reason for this is that the &lt;STRONG&gt;SSIS&lt;/STRONG&gt; packages needs to log other parameters that the &lt;STRONG&gt;QVW&lt;/STRONG&gt; would not be aware of.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Could this be done?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Chees&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Eamonn&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 19:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471129#M1273906</guid>
      <dc:creator>obriened83</dc:creator>
      <dc:date>2012-11-28T19:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471130#M1273907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Just to let anybody who has this issue know that I found a solution. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;I have now coded an Error Handler within the QMSEDX.exe that has successfully neutralized that &lt;STRONG&gt;Process Error Code 255&lt;/STRONG&gt;. &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;When the error now occurs, the Error Handler successfully catches the error and retries the polling process. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if ye have any queries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;Please see below the C# Code needed to implement this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;----------------Code ---------------------------------------------------------&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;try&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; TraceMessage(&lt;SPAN style="color: #2b91af;"&gt;TraceLevel&lt;/SPAN&gt;.Info, &lt;SPAN style="color: #2b91af;"&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN style="color: #a31515;"&gt;"Successfully started task with id/name={0}"&lt;/SPAN&gt;, _taskIdOrName));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt; mainTaskResult = PollSingleTask(client, triggerResult.ExecId, _pollIntervall, _timeout);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt;&amp;gt; triggeredEDXStatuses = MonitorTriggeredTasks(client, mainTaskResult.TriggeredTasksId);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; totalResult = AnalyseResult(mainTaskResult, triggeredEDXStatuses);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (&lt;SPAN style="color: #2b91af;"&gt;Exception&lt;/SPAN&gt; ex)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.Message);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.Source);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.InnerException);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"An error occured: "&lt;/SPAN&gt; + ex.HelpLink);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Trying Again"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; TraceMessage(&lt;SPAN style="color: #2b91af;"&gt;TraceLevel&lt;/SPAN&gt;.Info, &lt;SPAN style="color: #2b91af;"&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN style="color: #a31515;"&gt;"Re-Initialised Communication With id/name={0}"&lt;/SPAN&gt;, _taskIdOrName));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt; mainTaskResult = PollSingleTask(client, triggerResult.ExecId, _pollIntervall, _timeout);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Polling Complete"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #2b91af;"&gt;EDXStatus&lt;/SPAN&gt;&amp;gt; triggeredEDXStatuses = MonitorTriggeredTasks(client, mainTaskResult.TriggeredTasksId);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: #2b91af;"&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN style="color: #a31515;"&gt;"Monitored Trigger Tasks Complete"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; totalResult = AnalyseResult(mainTaskResult, triggeredEDXStatuses);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 14:05:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471130#M1273907</guid>
      <dc:creator>obriened83</dc:creator>
      <dc:date>2012-12-21T14:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview EDX and SSIS Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471131#M1273908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I have the &lt;STRONG style="font-size: 12.727272033691406px; font-family: Consolas; color: #000000;"&gt;Process Error Code 255&lt;/STRONG&gt;&amp;nbsp; is sent to the scheduler whenever there is aa long QVD reload , and this blocks the launch of the other tasks from the scheduler&amp;nbsp; however&amp;nbsp; for the other qvw document that are less time consuming when launched the error dooesn't reproduce, where do i need to implement your C# code ? thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-EDX-and-SSIS-Issues/m-p/471131#M1273908</guid>
      <dc:creator />
      <dc:date>2014-01-27T10:06:33Z</dc:date>
    </item>
  </channel>
</rss>

