Running a Select by Attribute Query in RCE returns a 404 error

1010
2
05-18-2021 11:41 AM
Labels (3)
SamuelColdiron
New Contributor III

Hello RHUG,

We recently starting running into an issue where running a Select by Attribute Query in RCE will sometimes return a Status: 404 error. We have tried clearing cache and changing browsers, but we can't find a common theme that will trigger it or keep it from happening. 

SamuelColdiron_0-1621363238015.jpeg

Has anyone run into this? Is there a query size limit in RCE? Thoughts?

Thank you for the help in advance,

Sam Coldiron and the Oklahoma DOT LRS Editing Team

Tags (3)
0 Kudos
2 Replies
RyanKoschatzky
Occasional Contributor III

Sorry the business unit issue was a different query issue in EE not a 404 error. 

0 Kudos
bbieb
by
Occasional Contributor

I do not remember the exact error we had but we ran into query length issues and had to modify the web.config on the web adaptor RCE was hitting.

https://support.esri.com/en/technical-article/000015245

brian

 

<system.web>         
    <!-- 8/12/20 bb https://support.esri.com/en/technical-article/000015245 -->
    <httpRuntime maxRequestLength="2097151" maxQueryStringLength="2097151" maxUrlLength="2097151" executionTimeout="100000" targetFramework="4.5" />
    <!-- <httpRuntime maxUrlLength="2000" maxRequestLength="2097151" executionTimeout="100000" targetFramework="4.5" /> -->
</system.web>

<system.webServer>
    <security>
         <requestFiltering>
	    <!-- 8/12/20 https://support.esri.com/en/technical-article/000015245 -->
            <requestLimits maxUrl="2097151" maxQueryString="2097151" maxAllowedContentLength="2147483648" />
            <!-- <requestLimits maxAllowedContentLength="2147483648" /> -->
         </requestFiltering>
     </security>
</system.webServer>
brian