Hello All,So here's my situation. I have an application that performs a find operation on a number of layers that can (potentially) return very large results on the order of 30MB or so. This is obviously a long running process. If I point the find task directly at the server on port 6080, it eventually gives me the results that I want. If I query through the WebAdapter on port 80, I get "Application Error: The operation has timed out". This will occur after precisely 100 seconds, and it occurs running in any browser, as well as through fiddler.I have tried changing a number of configuration options in IIS already. For instance, setting the following
<httpRuntime
maxRequestLength="2097151"
executionTimeout="100000"
/>
does not help. On the IIS server itself, I have changed the Connection-timeout property to 7000 seconds, again to no avail. I really would like to be able to support these long running query/find operations through the webadapter if at all possible.I appreciate any thoughts or comments!Cheers,Mike