gpt4 book ai didi

c# - "Fiddler has detected a protocol violation in session. Content-Length mismatch"

转载 作者:行者123 更新时间:2023-11-30 12:53:00 25 4
gpt4 key购买 nike

Fiddler 在 session 中检测到协议(protocol)违规。内容长度不匹配:响应 header 要求 292 字节,但服务器发送了 293 字节。

由于返回的响应大小,每次调用网络服务时都会出错。我可以访问这两个网络服务 ( http://gator1122.hostgator.com/~soptions/demo/administrator/components/com_vm_soa/services/VM_CategoriesService.php?WSDL )

当我使用以下代码添加产品时(我意识到密码正在显示,这没关系,因为它是一个演示数据库)。

VM_Categories_ws.VM_Categories proxy = new VM_Categories_ws.VM_Categories();

VM_Categories_ws.loginInfo logindetails = new VM_Categories_ws.loginInfo();
logindetails.login = "admin";
logindetails.password = "password";

VM_Categories_ws.AddCategoryInput categoryInput = new VM_Categories_ws.AddCategoryInput();

category.name= "13";
category.description = "test";
category.category_flypage = null;
category.category_browsepage = "browse_1";
category.category_publish = "Y";

categoryInput.loginInfo = logindetails;
categoryInput.category = category;
proxy.AddCategory(categoryInput);

我可以访问网络服务和 C# 客户端,但无法让它们一起工作。

最佳答案

这可能是因为发送的是“\r\n”而不是“\n”。一个额外的字节是不可打印的字符。

关于c# - "Fiddler has detected a protocol violation in session. Content-Length mismatch",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3234110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com