When opening a Qlikview document from the AccessPoint a session is created and the document is loaded into memory but the application is never uploaded in the browser. Windows eventlog show HttpException with a Requested timeout for Application pool process w3wp.exe.
Environment:
Cause:
The time to execute a request has been exceeded and therefore shut down by ASP.NET.
Resolution:
In C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\web.config
Add following tag, if not already present:
<system.web>
<httpRuntime executionTimeout="XXX"/>
</system.web>
The httpRuntime element is not explicitly defined in the Machine.config file or in the root Web.config file. However, If you need to customize this section you must create it in your configuration file and define only those attributes that need customization. The Execution Timeout in IIS is by default set to 110.
The issue is solved by increasing this value.
http://msdn.microsoft.com/en-us/library/vstudio/e1f13641%28v=vs.100%29.aspx