I am working on MVC platform and I am calling jqGrid using JSON GET.
I have read on Request Limits, maxQueryStringLength, maxAllowedContentLength, maximum length of URL and configure the web.config
as of following
<httpRuntime maxRequestLength="2147483647" executionTimeout="1200" requestValidationMode="2.0" maxQueryStringLength="2097151" maxUrlLength ="65536"/>
&
<requestLimits maxUrl ="65536" maxAllowedContentLength="4294967295" maxQueryString ="2097151" />
But it is still giving me the 414 (Request-URI Too Long)
error.
Any idea what could be the solution to this?
EDIT:
Based on Rory's comment, I changed from GET request to POST. By changing it should solve the issue. Discussion can be found here here. However, I am still facing the same issue after changing it and going through ASP.Net Core maxUrlLength