<?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: Mashup QS Desktop to Enterprise Server in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409277#M8626</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do beware though that if on the server you delete and recreate the app will get a new App ID and your MashUp will stop working until amended to reflect the new App Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But&lt;/STRONG&gt; if you publish the App to a stream and then &lt;SPAN style="font-size: 13.3333px;"&gt;publish &lt;/SPAN&gt;a new version of the App to replace it, then the App in the stream will retain its original App Id and the MashUp will continue working fine.&amp;nbsp; So best to do it this way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Aug 2017 16:17:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-08-25T16:17:41Z</dc:date>
    <item>
      <title>Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409269#M8618</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;Could it be a problem if I develop a Mashup in the local host (Sense Desktop) with the mashup builder and after I upload / import it to Sense Server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have Connection Lost msg when I would like to open the Mashup in Servers' QMC, with View button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 09:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409269#M8618</guid>
      <dc:creator>dberkesacn</dc:creator>
      <dc:date>2017-08-16T09:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409270#M8619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you changed the openApp to point to the App ID of the app on the server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I normally use a few if statements like this to auto sort it :&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;/* On localhost QlikSense Desktop */&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;if&amp;nbsp; ( hostName == 'localhost' ) {&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;var app = qlik.openApp('blah.qvf', config);&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;} ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;/* On QlikSense Test Server&amp;nbsp; blah */&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;if&amp;nbsp; ( hostName == '&lt;EM style="font-size: 13.3333px;"&gt;blah&lt;/EM&gt;' ) {&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;var app = qlik.openApp('blahId', config);&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;} ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;/* On QlikSense Prod Server &lt;EM style="font-size: 13.3333px;"&gt;blah &lt;/EM&gt; */&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;if&amp;nbsp; ( hostName == '&lt;EM style="font-size: 13.3333px;"&gt;blah&lt;/EM&gt;' ) {&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;var app = qlik.openApp('&lt;EM style="font-size: 13.3333px;"&gt;blahId&lt;/EM&gt;', config);&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;} ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;You'll have to change all the &lt;EM style="font-size: 13.3333px;"&gt;blah &lt;/EM&gt;'s to you you real names / id's.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 09:51:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409270#M8619</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-16T09:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409271#M8620</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;Could you explain me this code please? And should I just put these lines in the javascript file?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Zoltan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2017 12:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409271#M8620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-18T12:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409272#M8621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at this entry in the online Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/sense-developer/June2017/Subsystems/Mashups/Content/Howtos/mashups-deploy-mashup.htm" title="http://help.qlik.com/en-US/sense-developer/June2017/Subsystems/Mashups/Content/Howtos/mashups-deploy-mashup.htm"&gt;Deploying your mashup to the repository ‒ Qlik Sense&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Especially this bit I have pasted in :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0f0f0f; font-size: 10pt; font-family: 'Open Sans', Arial, sans-serif;"&gt;&lt;EM&gt;2. Update the JavaScript file. In a &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;EM&gt;&lt;SPAN class="PrimaryGenericName" style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif;"&gt;Qlik Sense&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif;"&gt; environment, the &lt;/SPAN&gt;&lt;SPAN class="syntax" style="background-color: #f4f4f4; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; color: #0f0f0f;"&gt;openApp&lt;/SPAN&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-size: 10pt; font-family: 'Open Sans', Arial, sans-serif;"&gt;&lt;EM&gt; function references an app ID instead of the app name. See the following examples.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #0f0f0f; font-size: 10pt; font-family: 'Open Sans', Arial, sans-serif;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-size: 10pt; font-family: 'Open Sans', Arial, sans-serif;"&gt;Below this in the Help are examples of how to use openApp in QlikSense Desktop vs. Server which in essence is App Name vs. App ID.&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2017 13:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409272#M8621</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-18T13:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409273#M8622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've customized the code you attached but unfortunately it still doesn't work. I've used this code: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;/* On localhost QlikSense Desktop */&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;if&amp;nbsp; ( location.host == 'localhost' ) {&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;var app = qlik.openApp('blah.qvf', config);&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;} ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;/* On QlikSense Test Server&amp;nbsp; blah */&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;if&amp;nbsp; ( location.host == '&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;blah&lt;/EM&gt;' ) {&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;var app = qlik.openApp('blahId', config);&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;} ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;I've changed the hostName to location.host to get the information but something is wrong. I've tried your solution too but that didn't work either. It seems like a variable (hostName) but it doesn't have any value, that's why I was trying to get that information via location.host.&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;Any idea what could be the problem? &lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;(Btw if I am just using one openApp method and change the Blah.qvf to the appID it works fine.)&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 12:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409273#M8622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-25T12:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409274#M8623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill, I finally managed to solve the issue, I had to use double quotes instead of single. Now it's working fine, thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 13:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409274#M8623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-25T13:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409275#M8624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ooops!!&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Forgot to say the variable &lt;/SPAN&gt;&lt;EM style="font-size: 13.3333px;"&gt;hostName &lt;/EM&gt;&lt;SPAN style="font-size: 10pt;"&gt;needs setting first.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;var hostName = window.location.hostname;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Then a &lt;EM&gt;console.log&lt;/EM&gt; immediately after will say what it actually is in your environment&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&lt;EM style="font-weight: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;console.log ( 'Detected Host: ' , hostName ) ;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 14:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409275#M8624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-25T14:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409276#M8625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;A href="https://community.qlik.com/qlik-users/249202"&gt;zoltan.farkas&lt;/A&gt;‌ and @&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/bill.markham"&gt;bill.markham&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 15:56:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409276#M8625</guid>
      <dc:creator>dberkesacn</dc:creator>
      <dc:date>2017-08-25T15:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup QS Desktop to Enterprise Server</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409277#M8626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do beware though that if on the server you delete and recreate the app will get a new App ID and your MashUp will stop working until amended to reflect the new App Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But&lt;/STRONG&gt; if you publish the App to a stream and then &lt;SPAN style="font-size: 13.3333px;"&gt;publish &lt;/SPAN&gt;a new version of the App to replace it, then the App in the stream will retain its original App Id and the MashUp will continue working fine.&amp;nbsp; So best to do it this way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 16:17:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-QS-Desktop-to-Enterprise-Server/m-p/1409277#M8626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-25T16:17:41Z</dc:date>
    </item>
  </channel>
</rss>

