Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Maximum Request Length Exceeded

In publisher, I'm trying to set up a loop and reduce. I can get the reduction window to populate with available fields, and when I select the value, it works....FOR EVERY DOCUMENT BUT THE ONE I NEED TO ACTUALLY REDUCE.

On the one I need to reduce, I get the error below. I've checked the permissions on the doc and on the folders. Is there by any chance a timeout on this or somethings that's causing it to hang?

Any help is appreciated.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Maximum request length exceeded.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[HttpException (0x80004005): Maximum request length exceeded.] System.Web.HttpRequest.GetEntireRawContent() +2705526 System.Web.HttpRequest.FillInFormCollection() +135 System.Web.HttpRequest.get_Form() +79 System.Web.HttpRequest.get_HasForm() +2697145 System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) +54 System.Web.UI.Page.DeterminePostBackMode() +85 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +270


Server Error in '/ControlPanel' Application.


Server Error in '/ControlPanel' Application.

Maximum request length exceeded.

1 Solution

Accepted Solutions
biester
Specialist
Specialist

Perhaps an alteration of web server configuration (see http://msdn.microsoft.com/en-us/library/e1f13641.aspx) might help.

Rgds,
Joachim

View solution in original post

2 Replies
biester
Specialist
Specialist

Perhaps an alteration of web server configuration (see http://msdn.microsoft.com/en-us/library/e1f13641.aspx) might help.

Rgds,
Joachim

Not applicable
Author

That's what I needed. Open up the C:\Program Files\QlikView\Publisher\ControlPanel\Web.Config file. Find the <system.web> tag, and then below it, insert the following:

<httpRuntime maxRequestLength="2048576" />

Thanks Joachim.