Large text area field causes connection reset (ERR_CONNECTION_RESET)Description<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> When opening a form that has a large text area field (~1.5MB), and then click the ServiceNow back button (not the one in the browser), the message "This site can't be reached" is displayed. The browser also displays the error message "The connection was reset" (ERR_CONNECTION_RESET). CauseTomcat has the parameter maxPostSize to limit the maximum size in bytes for POST requests that are handled by the container FORM URL parameter parsing. By default, this limit is 2MB, and ServiceNow instances do not override this value. The ServiceNow text area has a hidden input field that copies everything in the text area, which doubles the POST size, that is why a text field with ~1.5M characters is actually oversized. The parameter maxPostSize applies only when request contentType is "application/x-www-form-urlencoded", REST/SOAP and attachments will not be affected. ResolutionUse attachments instead of inserting content into large text fields.