<?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 POST /app/import  .qvf more than 3 Go result in connection reset exception in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543012#M22767</link>
    <description>&lt;P&gt;hello everybody,&lt;BR /&gt;&lt;BR /&gt;I use&amp;nbsp;POST /app/import as described here :&amp;nbsp;&lt;A title="/app/upload" href="https://help.qlik.com/en-US/sense-developer/november2025/APIs/RepositoryServiceAPI/index.html?page=1440" target="_blank" rel="noopener"&gt;APIs/RepositoryServiceAPI&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Everything works fine until I need to upload files larger than 3 GB.&lt;BR /&gt;In this case I receive Connection reset exception.&lt;BR /&gt;&lt;BR /&gt;Is there a limit configured somewhere in Qlik Sense?&lt;BR /&gt;Is there a timeout configured somewhere in Qlik Sense?&lt;/P&gt;</description>
    <pubDate>Mon, 23 Feb 2026 15:23:01 GMT</pubDate>
    <dc:creator>PhilippeG</dc:creator>
    <dc:date>2026-02-23T15:23:01Z</dc:date>
    <item>
      <title>POST /app/import  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543012#M22767</link>
      <description>&lt;P&gt;hello everybody,&lt;BR /&gt;&lt;BR /&gt;I use&amp;nbsp;POST /app/import as described here :&amp;nbsp;&lt;A title="/app/upload" href="https://help.qlik.com/en-US/sense-developer/november2025/APIs/RepositoryServiceAPI/index.html?page=1440" target="_blank" rel="noopener"&gt;APIs/RepositoryServiceAPI&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Everything works fine until I need to upload files larger than 3 GB.&lt;BR /&gt;In this case I receive Connection reset exception.&lt;BR /&gt;&lt;BR /&gt;Is there a limit configured somewhere in Qlik Sense?&lt;BR /&gt;Is there a timeout configured somewhere in Qlik Sense?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 15:23:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543012#M22767</guid>
      <dc:creator>PhilippeG</dc:creator>
      <dc:date>2026-02-23T15:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: POST /app/upload  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543085#M22770</link>
      <description>&lt;P&gt;Yes, Qlik Sense has specific defaults that trigger a connection reset for massive uploads. The Repository Service (QRS) typically has an internal timeout (often defaulting to 90 seconds) and a maximum message size limit (often 2 GB) managed via the Repository.exe.config file. Furthermore, if you are routing through the Qlik Sense Proxy Service, it may drop the connection if the request exceeds its own timeout or buffer limits. To handle 3 GB+ files, you usually need to increase the MaxReceivedMessageSize in the config files or, more reliably, use a chunked upload approach to bypass single-request payload restrictions&amp;nbsp;&lt;A href="https://www-voyafinancial.com" target="_self"&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;voyafinancialcom&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 04:07:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543085#M22770</guid>
      <dc:creator>dora745nevels</dc:creator>
      <dc:date>2026-02-17T04:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: POST /app/upload  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543385#M22778</link>
      <description>&lt;P&gt;Thank you for your reply, but I haven't found any suitable settings in Repository.exe.config to resolve the issue. MaxReceivedMessageSize is a QView parameter (which serves a different purpose), and using a block upload approach isn't possible: /app/import uses a filename; the file isn't sent there.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 15:23:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543385#M22778</guid>
      <dc:creator>PhilippeG</dc:creator>
      <dc:date>2026-02-23T15:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: POST /app/upload  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543530#M22781</link>
      <description>&lt;P&gt;How more exactly are you uploading the app? I was able to upload a 7 GB QVF using a stream content HTTP body. Like this in C# (using the library &lt;A href="https://www.nuget.org/packages/QlikSenseRestClient/" target="_blank"&gt;https://www.nuget.org/packages/QlikSenseRestClient/&lt;/A&gt;) :&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;var path = @"C:\Tmp\MyApp.qvf";

var restClient = new RestClient(url);
restClient.AsNtlmUserViaProxy(certificateValidation: false);

var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read);
var streamContent = new StreamContent(fileStream);
streamContent.Headers.ContentType = new MediaTypeHeaderValue("application/vnd.qlik.sense.app");
Console.WriteLine(restClient.PostHttp("/qrs/app/upload?keepData=true&amp;amp;name=" + Path.GetFileName(path), streamContent));&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 12:16:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543530#M22781</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2026-02-23T12:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: POST /app/upload  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543542#M22784</link>
      <description>&lt;P&gt;I'm sorry, but I made a mistake: the problem occurs when using /app/import&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 15:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543542#M22784</guid>
      <dc:creator>PhilippeG</dc:creator>
      <dc:date>2026-02-23T15:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: POST /app/upload  .qvf more than 3 Go result in connection reset exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543592#M22786</link>
      <description>&lt;P&gt;Oh! You get that error using /app/import? Typically that endpoint is much quicker. I just tested and was able to import a 7 GB app without any problem. It took about two minutes with no special configurations in place in my installation.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2026 07:45:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/POST-app-import-qvf-more-than-3-Go-result-in-connection-reset/m-p/2543592#M22786</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2026-02-24T07:45:05Z</dc:date>
    </item>
  </channel>
</rss>

