502- Web服务器收到无效响应

时间:2016-01-18 17:19:44

标签: asp.net azure web-applications azure-web-sites

有时我的azure应用程序出现502错误,所以我在我的服务器上启用了诊断日志记录。 它显示了2个错误(你可以找到它们作为附加图像):第一个

404.0 not found. I don't know why the server was looking for that. I don't have the ressource in my project.

the second: 404.15 Not found the query string is too long. It happens when i upload document. I've set up my web config to load max 2Go of document

<system.web><httpRuntime targetFramework="4.5" maxRequestLength="2097151" /></system.web>
<system.webServer><security><requestFiltering><requestLimits maxAllowedContentLength="2147483648" maxQueryString="3000"/>
你知道吗?

谢谢

1 个答案:

答案 0 :(得分:0)

第一个可能是因为你的html / css中的某个地方引用了ui-bg_glass_75_ffffff_1x400.png,但你没有将它包含在你项目中的正确位置。你有机会使用jquery-ui吗?

第二个很可能是由groupsToken引起的,当您通过SignalR将客户端添加到更多组时,groupsToken会扩展。您是否在页面上有上传状态?你在那个页面上使用角度/敲门声吗?如果是这样,那么您需要确保在上传完成后从集团中取消注册并提供信息。