It would have been animated if the image upload at Blogger wasn't screwed! ~x(Yesterday I was trying desperately to understand why my web site was crashing without any error, the only information I could get being that the connection to the server has been reset. I've spent hours trying to determine what was wrong. Apparently I needed a break, because today it took me a few minutes to realize what it was.

First of all, duh! If there are issues with the connection server, look into the Windows Application Event Log. But we'll get there.

The "error" appeared at any postback after I loaded a certain page, but only if that page displayed a minimum of data. Above that threshold I would get the server reset thing that you can see both in IE7 and FireFox2 in the animated GIF. Basically the error messages were:
FireFox
The connection was reset
The connection to the server was reset while the page was loading.

Internet Explorer
Internet Explorer cannot display the webpage
Internet connectivity has been lost.
The website is temporarily unavailable.
The Domain Name Server (DNS) is not reachable.

Ajax UpdatePanel
Server returned error 12031

So, today I realised I should look in the Application Event Log and this Web Event Warning was displayed (shortened it a bit):
Event code: 3004
Event message: Post size exceeded allowed limits.

Process information:
Process name: aspnet_wp.exe

Exception information:
Exception type: HttpException
Exception message: Maximum request length exceeded.

Stack trace: at System.Web.HttpRequest.GetEntireRawContent()
at System.Web.HttpRequest.FillInFormCollection()
at System.Web.HttpRequest.get_Form()
at System.Web.HttpRequest.get_HasForm()
at System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull)
at System.Web.UI.Page.DeterminePostBackMode()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


It turns out I was putting a lot of data into the ViewState, which, as you know, is saved as a HiddenField (a.k.a. hidden html input) and the size of it exceeded the set up maximum POST size.

Solutions:
A. Add this code to your page: (NET 2.0)
 protected override PageStatePersister PageStatePersister
{
get
{
//return base.PageStatePersister;
return new SessionPageStatePersister(this);
}
}


This should put your ViewState into the Session, rather than in the page. This solves some other issues as well, obviously.

B. Increase the maximum Request limit (default is 4Mb)
- In the Machine.config file, change the maxRequestLength attribute of the <httpRuntime> configuration section to a larger value. This change affects the whole computer.
- In the Web.config file, override the value of maxRequestLength for the application. For example, the following entry in Web.config allows files that are less than or equal to 8 megabytes (MB) to be uploaded:
<httpRuntime maxRequestLength="8192" />

This is an exact quote from the Microsoft support page.

That's it, folks!

Update:

The maxRequestLength maximum value is 2097151, that is less than 2.1Gb. No file that exceeds this size can be uploaded through the default upload mechanism.

Comments

Anonymous

Thanks for this post! It saved my day with bugs I can&#39;t figure out why and how it happened?

Anonymous

Ganesan Natarajan

Hi, I make the changes, but still am getting the same error...

Ganesan Natarajan

Allan Oliveira

Thank you very much. I think my problem was ajax asp.net but never imagine can be size of viewstate.

Allan Oliveira

Denil Roy

Vb Code:- WebConfig: &quot;&lt; httpRuntime maxRequestLength=&quot;8192&quot; /&gt;&quot;

Denil Roy

Denil Roy

Vb Code:- Code window : Protected Overrides ReadOnly Property PageStatePersister() As PageStatePersister Get &#39;return base.PageStatePersister; Return New SessionPageStatePersister(Me) End Get End Property WebConfig:

Denil Roy

Anonymous

Thanks a lot, I had a simple string in the viewstate, but I was experiencing your same problem and, btw, I solved the problem usign your suggestion. I suggest you (if you can) to add some keywords like &quot;unknwon reason&quot;, &quot;post back page&quot;, &quot;link button&quot;. Eventually I found your post with this query on Saint Google: &quot;&quot;The connection was reset&quot; without any reason aspx postback&quot; cheers stmod

Anonymous

Neilius

Thanks. I didn&#39;t even know what a PageStatePersister was till I read this article. Problem solved. My pigs are now ready to fly :)

Neilius

Siderite

As you can see in the documentation of the httpRuntime element (http://msdn.microsoft.com/en-us/library/e1f13641.aspx), it is a tag that resides as a child tag of system.web. So something like this: &lt;configuration&gt; &lt;system.web&gt; &lt;httpRuntime ...

Siderite

Andrik McVean

hello siderite. this this very helpful but i can&#39;t find this tag in my web.config. I am using vb.net..could you please help me. if i need to paste it on web.config which section please? really need your help. thanks andrik

Andrik McVean

lovedoughnut64

Hi, like what u said and sounds like it will solve my issue. I&#39;m not a programmer, can u do a step by step as i don&#39;t know what an event viewer is and it looks like i have to go into event viewer to configure the Firefox file. I have Firefox 3.6 and I&#39;m getting the &quot;The connection was reset&quot; error. Thanks for any help. LVDS

lovedoughnut64

lovedoughnut64

This comment has been removed by the author.

lovedoughnut64

aj

This saved my bacon. I installed SQL Express 2008 and when I would get to a certain point in my web app, I&#39;d get that &quot;connection was reset&quot; error. It only happened on POST operations. These attributes in web.config solved the problem. I&#39;m ecstatic since I can now use the nice features of SQL 2008&#39;s manager alongside asp.net on my computer. Thanks!!

aj

Rodrigo Espinosa

Thanks for you post, but my problem get resolved uninstalling nod32. It had some problems dealing with proxies.

Rodrigo Espinosa

Siderite

The httpRuntime tag in web.config uses maxRequestLength for setting a maximum acceptable request length and executionTimeout to set a maximum acceptable execution time. Check out this http://msdn.microsoft.com/en-us/library/e1f13641.aspx (httpRuntime Element)

Siderite

Hamza

Siderite, nice post. Very helpful. Just wanted to check if my problem is related. I have an asynchronous request which gives me the same message if it takes a long time for the response. Ideally I would like the connection to live till the response is back rather than dropping dead. Have a look at the http://www.hamzaafaq.com/Sleep.aspx?sleeptime=10000 (test page) I&#39;ve put up. If you change the sleeptime value to a bit higher (http://www.hamzaafaq.com/Sleep.aspx?sleeptime=40000 (example)), the connection just drops. Any solutions?

Hamza

slade73

Thanks for posting this. The maxRequestLength was the fix I needed because I was allowing large files to be uploaded via a file input control.

slade73

the TaleCrafter

Thank you very much. This one had me stumped. I had often wondered about that ViewState, and if it ever filled up.

the TaleCrafter

Siderite

You are most welcome! What queries did you use to search the web? Maybe I can add some of the words to the post so that people find it faster.

Siderite

Suresh

This is Very Much Helpful Post (Error Code : 12031)after an 7Hrs of Search in Web atlast got this one.It Solved my Problem Thanx a LOT &quot;Siderite&quot; Regards SURESH RAJ MCST, MCPD

Suresh

Anonymous

Siderite, Thanks too much for sharing your experience. It helped me a lot.

Anonymous

Post a comment