<?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 TriggerEDX : Server Error in '/' Application (error and uncertainties) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192824#M54337</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can find the port used by Publisher in the Qlikview Enterprise Management Console; go to System-&amp;gt;Setup-&amp;gt;QDS@&amp;lt;server&amp;gt;-&amp;gt;Summary.&lt;/P&gt;&lt;P&gt;Also you have to connect to the server with NTLM authentication as a user that is part of the QlikView Administrators group (I believe this requirement was relaxed a bit with 9.0 SR1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Mar 2010 17:49:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-25T17:49:16Z</dc:date>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192821#M54334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to reload two documents using TriggerEDX(), but still I'm trying to load one:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;Sub TriggerEDX()&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;Dim objHttp&lt;BR /&gt; Dim strUrl&lt;BR /&gt; Dim strData&lt;BR /&gt; Dim strKeyRequest&lt;BR /&gt; Dim strKeyAwnser&lt;BR /&gt;&lt;BR /&gt; Dim strTaskName&lt;BR /&gt; strTaskName = "MyMountedFolder/MyFileName.qvw"&lt;/P&gt;&lt;P&gt;Dim strTaskPassword&lt;BR /&gt; strTaskPassword = "MyPassword"&lt;BR /&gt; ' Create a HTTP instance&lt;BR /&gt; Set objHttp = CreateObject("Microsoft.XMLHTTP")&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; strUrl = "&lt;A href="http://MyServerName/qtxs.asmx"&gt;http://MyServerName/qtxs.asmx&lt;/A&gt;"&lt;BR /&gt;&lt;BR /&gt; strKeyRequest ="&amp;lt;Global method=""GetTimeLimitedRequestKey"" /&amp;gt;"&lt;BR /&gt;&lt;BR /&gt; objHttp.open "POST",strUrl,false&lt;BR /&gt; objHttp.setRequestHeader "Content-Type","text/xml"&lt;BR /&gt; objHttp.setRequestHeader "Content-Length", Len(strKeyRequest)&lt;BR /&gt; objHttp.Send strKeyRequest&lt;BR /&gt;&lt;BR /&gt; 'Parse the awnser&lt;BR /&gt;&lt;BR /&gt; 'msgbox(objHttp.ResponseText)&lt;BR /&gt;&lt;BR /&gt; Dim strKey&lt;BR /&gt; strKey = ParseKeyAwnser(objHttp.ResponseText)&lt;BR /&gt;&lt;BR /&gt; 'Get the string to send in the request that triggers the task&lt;BR /&gt; Dim strEDXRequest&lt;BR /&gt;&lt;BR /&gt; strEDXRequest = GetEDXRequestString(strKey,strTaskName,strTaskPassword)&lt;/P&gt;&lt;P&gt;'Do the actual request to trigger the task&lt;BR /&gt; objHttp.open "POST",strUrl,false&lt;BR /&gt; objHttp.setRequestHeader "Content-Type","text/xml"&lt;BR /&gt; objHttp.setRequestHeader "Content-Length", Len(strKeyRequest)&lt;BR /&gt; objHttp.Send strEDXRequest&lt;/P&gt;&lt;P&gt;'Get the awnser, the awnser can contain different things but for now I only care to see if we find success&lt;BR /&gt; dim strAwnser&lt;BR /&gt; strAwnser = objHttp.ResponseText&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; if(Instr(strAwnser,"&amp;lt;TaskStartResult&amp;gt;Success&amp;lt;/TaskStartResult&amp;gt;") &amp;gt; 0) then&lt;BR /&gt; msgbox("Success")&lt;BR /&gt; else&lt;BR /&gt; msgbox(strAwnser)&lt;BR /&gt; end if&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; ActiveDocument.GetSheetObject("BU11").Press&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Function ParseKeyAwnser(strKeyAwnser)&lt;/P&gt;&lt;P&gt;Dim intStartPos&lt;BR /&gt; Dim IntKeyLen&lt;BR /&gt; 'msgbox strKeyAwnser&lt;BR /&gt; 'Get the starting and the end position of the key&lt;BR /&gt; intStartPos = InStr(strKeyAwnser,"&amp;lt;GetTimeLimitedRequestKeyResult&amp;gt;")+Len("&amp;lt;GetTimeLimitedRequestKeyResult&amp;gt;")&lt;BR /&gt; intKeyLen = InStrRev(strKeyAwnser,"&amp;lt;/GetTimeLimitedRequestKeyResult&amp;gt;") - intStartPos&lt;/P&gt;&lt;P&gt;'Get and return the key&lt;BR /&gt; msgbox strKeyAwnser&lt;BR /&gt; 'msgbox intStartPos&lt;BR /&gt; 'msgbox intKeyLen&lt;BR /&gt; ParseKeyAwnser = Mid(strKeyAwnser,intStartPos,intKeyLen)&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function GetEDXRequestString(strRequestKey,strTaskName,strTaskPassword)&lt;BR /&gt; 'Make the string and insert the key&lt;BR /&gt; GetEDXRequestString = "&amp;lt;Global method=""RequestEDX"" key=""" &amp;amp; strRequestKey &amp;amp; """&amp;gt;&amp;lt;i_TaskIDOrTaskName&amp;gt;" &amp;amp; strTaskName &amp;amp; "&amp;lt;/i_TaskIDOrTaskName&amp;gt;&amp;lt;i_Password&amp;gt;" &amp;amp; strTaskPassword &amp;amp; "&amp;lt;/i_Password&amp;gt;&amp;lt;i_VariableName /&amp;gt;&amp;lt;i_VariableValueList /&amp;gt;&amp;lt;/Global&amp;gt;"&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;msgbox strKeyAwnser displays:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;objHttp.ResponseText: &amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;title&amp;gt;The resource cannot be found.&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt;&lt;/P&gt;&lt;P&gt;body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}&lt;/P&gt;&lt;P&gt;p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}&lt;/P&gt;&lt;P&gt;b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}&lt;/P&gt;&lt;P&gt;H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }&lt;/P&gt;&lt;P&gt;H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }&lt;/P&gt;&lt;P&gt;pre {font-family:"Lucida Console";font-size: .9em}&lt;/P&gt;&lt;P&gt;.marker {font-weight: bold; color: black;text-decoration: none;}&lt;/P&gt;&lt;P&gt;.version {color: gray;}&lt;/P&gt;&lt;P&gt;.error {margin-bottom: 10px;}&lt;/P&gt;&lt;P&gt;.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }&lt;/P&gt;&lt;P&gt;&amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body bgcolor="white"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;span&amp;gt;&amp;lt;H1&amp;gt;Server Error in '/' Application.&amp;lt;hr width=100% size=1 color=silver&amp;gt;&amp;lt;/H1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;h2&amp;gt; &amp;lt;i&amp;gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;the script stops at the function ParseKeyAwnser in "ParseKeyAwnser = Mid(strKeyAwnser,intStartPos,intKeyLen)" because "intKeyLen" has a negative value...&lt;/P&gt;&lt;P&gt;my knowledge is Webservices are few and the script I have gone through another site ... I do not know exactly how I have to put the strUrl or the path to the document (strTaskName)&lt;BR /&gt;&lt;BR /&gt;any ideas? a little help?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 16:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192821#M54334</guid>
      <dc:creator />
      <dc:date>2010-03-24T16:11:26Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192822#M54335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you connecting to the correct port? Publisher typically listens on port 4720.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 21:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192822#M54335</guid>
      <dc:creator />
      <dc:date>2010-03-24T21:48:50Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192823#M54336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried putting the port "4720" because I have seen in other examples, but then the script stops in "objHttp.send strKeyRequest".&lt;/P&gt;&lt;P&gt;How can I find the correct port?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192823#M54336</guid>
      <dc:creator />
      <dc:date>2010-03-25T09:15:47Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192824#M54337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can find the port used by Publisher in the Qlikview Enterprise Management Console; go to System-&amp;gt;Setup-&amp;gt;QDS@&amp;lt;server&amp;gt;-&amp;gt;Summary.&lt;/P&gt;&lt;P&gt;Also you have to connect to the server with NTLM authentication as a user that is part of the QlikView Administrators group (I believe this requirement was relaxed a bit with 9.0 SR1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 17:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192824#M54337</guid>
      <dc:creator />
      <dc:date>2010-03-25T17:49:16Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192825#M54338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excuse me, but I do not find "QDS @ &amp;lt;server&amp;gt;" ...&lt;BR /&gt;&lt;BR /&gt;This is the sections that I see in "QlikView Enterprise Management Console"&lt;BR /&gt;&lt;BR /&gt;THANK YOU VERY MUCH&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/7357.picture.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/7357.picture.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Mar 2010 09:11:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192825#M54338</guid>
      <dc:creator />
      <dc:date>2010-03-26T09:11:36Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192826#M54339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's under the Distribution Services entry which appears to be not expandable in your instance. Have you entered your publisher license?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Mar 2010 05:01:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192826#M54339</guid>
      <dc:creator />
      <dc:date>2010-03-27T05:01:27Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192827#M54340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We use the standard edition that comes with the server...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Do we have to indicate another license number?&lt;BR /&gt;Do we need the enterprise edition?&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Mar 2010 15:07:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192827#M54340</guid>
      <dc:creator />
      <dc:date>2010-03-29T15:07:09Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192828#M54341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Nobody knows if I need the publisher enterprise edition to use TriggerEDX()?&lt;/P&gt;&lt;P&gt;I need to reload two documents on the server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Apr 2010 12:55:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192828#M54341</guid>
      <dc:creator />
      <dc:date>2010-04-06T12:55:39Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192829#M54342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Anyone know if I can use TriggerEDX() with the the publisher standard edition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 16:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192829#M54342</guid>
      <dc:creator />
      <dc:date>2010-04-20T16:07:08Z</dc:date>
    </item>
    <item>
      <title>TriggerEDX : Server Error in '/' Application (error and uncertainties)</title>
      <link>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192830#M54343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Nobody knows if I need the publisher enterprise edition to use TriggerEDX()? The Distribution Services entry appears not expandable in Qlikview Enterprise Management Console. We only have publisher standar edition (version that is included with the server)&lt;/P&gt;&lt;P&gt;I need to reload documents on the server...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 08:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TriggerEDX-Server-Error-in-Application-error-and-uncertainties/m-p/192830#M54343</guid>
      <dc:creator />
      <dc:date>2010-06-25T08:29:54Z</dc:date>
    </item>
  </channel>
</rss>

