[Fiddler] Error:Content-Length mismatch: Request Header indicated 16 bytes, but client sent 0 bytes.

[Fiddler] Error:Content-Length mismatch: Request Header indicated 16 bytes, but client sent 0 bytes.

 

The error is because of do "location.reload();" after "$.ajax()".

Remove "location.reload();" will fix the issue.

 

 $.ajax({
                type: 'POST',
                url: pageUrl,
                data: JSON.stringify(parameter),
                contentType: 'application/json; charset=utf-8',
                dataType: 'json',
                success: function (data) {
                    onSuccess(data);
                },
                error: function (data, success, error) {
                    alert("Error : " + error);
                }
            });

 

Another same cause error:
2299 Failed to obtain request body. System.IO.InvalidDataException The request body did not contain the specified number of bytes. Got 0, expected 19

 

So how to do refresh page after ajax:

$.ajax({
                type: 'POST',
                url: pageUrl,
                data: JSON.stringify(parameter),
                contentType: 'application/json; charset=utf-8',
                dataType: 'json',
                success: function (data) {
                    onSuccess(data);
                },
                error: function (data, success, error) {
                    alert("Error : " + error);
                },
                complete: function () {
                    setTimeout(function () {
                        window.location.reload();
                    }, 1000);
                }
            });

 

时间: 2025-01-16 13:42:19

[Fiddler] Error:Content-Length mismatch: Request Header indicated 16 bytes, but client sent 0 bytes.的相关文章

http-新浪云存储中HTTP Request Header(Authorization)方式PHP实现?

问题描述 新浪云存储中HTTP Request Header(Authorization)方式PHP实现? 新浪云存储的官方文档如下:http://open.sinastorage.com/?c=doc&a=guide&section=sign 但是实现起来只有第二种能实现,第一种方式试了好久,没有弄出来. 解决方案 用fiddler调试下 ,看看发出的请求有什么问题?返回什么错误.

java.lang.IllegalArgumentException: Request header is too large

tomcat运行项目时,有一个请求过去后,后台报这样的错java.lang.IllegalArgumentException: Request header is too large原因:请求头超过了tomcat的限值.本来post请求是没有参数大小限制,但是服务器有自己的默认大小.解决:处理办法:在server.xml中 <Connector connectionTimeout="20000" port="8080" protocol="HTTP/

The maximum string content length quota (8192) has been exceeded while reading XML data

原文:The maximum string content length quota (8192) has been exceeded while reading XML data   问题场景:在我们WCF服务发布后,我们要确保服务端以及客户端的配置文件允许合适大小的传输设置.笔者在发布WCF服务时,服务端的绑定未做传输大小的设置(采用了默认,maxStringContentLength默认大小为8192),而我们在传输序列化的数据时,大小超过了这个限制.  读取 XML 数据时,超出最大字符

[ERROR]Space id in fsp header but in the page header一列

原创转载请注明出处 报错如下MYSQL不能正常启动 2017-09-22 10:39:05 21409 [Note] InnoDB: Database was not shutdown normally! 2017-09-22 10:39:05 21409 [Note] InnoDB: Starting crash recovery. 2017-09-22 10:39:05 21409 [Note] InnoDB: Reading tablespace information from the

IE/Firefox浏览器刷新和强制刷新发送的HTTP Request Header

Firefox: 刷新 F5 Cache-Control: max-age=0 强制刷新 Ctrl+F5 Pragma: no-cache Cache-Control: no-cache IE: 刷新 F5 If-Modified-Since: Sun, 21 Nov 2004 14:35:21 GMT If-None-Match: "14f598-916-a64a7c40" 强制刷新 Ctrl+F5 Cache-Control: no-cache

DiscuX END - 553 Envolope sender mismatch with header from..

论坛被机器人折磨的欲仙欲死,实在没折,决定启用邮件验证,怎么配置都发不出来,另一个论坛却一点问题没有,排查后,结果在DATA下的logo里看到大量日志,SMTP一般是这样的: SendMail一般是这样的: 从提示来看,应该是说发信人没人填,排查后台,都填了呀,但是,两个地方填的不一样,哪两个地方呢?看下图: 要一致才行.       看似小问题,却是浪费了不少时间.

midl2025-error MIDL2025 : syntax error : expecting ] or , near &amp;amp;quot;QUEUEABLE&amp;amp;quot; 什么问题VC6.0

问题描述 error MIDL2025 : syntax error : expecting ] or , near "QUEUEABLE" 什么问题VC6.0 #include "mtxattr.h" [ object, uuid(4BEE23B1-D438-4B92-B588-B8835D3F9FB8), dual, helpstring("IReservationTransfer Interface"), pointer_default(u

模拟tomcat连接器

Tomcat中的连接器是一个独立的模块,可以被插入到servlet容器中,而且还有很多连接器可以使用.例如Coyote,mod_jk,mod_jk2,mod_webapp等.Tomcat中使用的连接器必须满足以下条件:    1.实现org.apache.catalina.Connector接口   2.负责创建实现了org.apache.catalina.Request接口的request对象   3.负责创建实现了org.apache.catalina.Response接口的response

汇编源码系列之driver

这个都是过去DOS时代的汇编源码,虽然已经过去了,但是对于学习汇编还是有帮助的,汇编语言只是程序员一门基础语言,大多人掌握即可,不一定要深入研究....... name driver page 55,132 title 'DRIVER --- installable driver template';; This is a "template" for a MS-DOS installable device driver.; The actual driver subroutines