Wednesday 15 August 2007

ASP.Net. The connection to the server has been reset!

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.

29 comments:

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

    ReplyDelete
  2. 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 "Siderite"

    Regards
    SURESH RAJ
    MCST, MCPD

    ReplyDelete
  3. 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.

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

    ReplyDelete
  5. Thank you for your post.

    ReplyDelete
  6. 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.

    ReplyDelete
  7. 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 httpRuntime Element

    ReplyDelete
  8. Thanks for you post, but my problem get resolved uninstalling nod32.

    It had some problems dealing with proxies.

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

    ReplyDelete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Hi, like what u said and sounds like it will solve my issue. I'm not a programmer, can u do a step by step as i don'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'm getting the "The connection was reset" error. Thanks for any help.

    LVDS

    ReplyDelete
  12. Thanks.. Rabbits were a chuckle too.

    ReplyDelete
  13. hello siderite.

    this this very helpful but i can'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

    ReplyDelete
  14. 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:
    <configuration>
    <system.web>
    <httpRuntime ...

    ReplyDelete
  15. I try all but sorry it didn't solve my problem.

    ReplyDelete
  16. Thanks a lot Siderite.It was very helpful...

    ReplyDelete
  17. Tahnks a lot !
    It helped me.

    -Rameez Shaikh

    ReplyDelete
  18. Thank you very much friends it working for me

    ReplyDelete
  19. Thanks. I didn't even know what a PageStatePersister was till I read this article. Problem solved. My pigs are now ready to fly :)

    ReplyDelete
  20. 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 "unknwon reason", "post back page", "link button".
    Eventually I found your post with this query on Saint Google: ""The connection was reset" without any reason aspx postback"

    cheers
    stmod

    ReplyDelete
  21. Vb Code:-

    Code window :
    Protected Overrides ReadOnly Property PageStatePersister() As PageStatePersister
    Get
    'return base.PageStatePersister;
    Return New SessionPageStatePersister(Me)
    End Get
    End Property

    WebConfig:


    ReplyDelete
  22. Vb Code:-



    WebConfig:

    "<
    httpRuntime maxRequestLength="8192" />"

    ReplyDelete
  23. Thanks, Denil, for sharing the VB version of the code.

    ReplyDelete
  24. Thank you very much.

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

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

    ReplyDelete
  26. Thanks for this post! It saved my day with bugs I can't figure out why and how it happened?

    ReplyDelete