We've got a report that is being generated and served in real time when a user clicks on a link.
Of course, after we go live, we've discovered that some users have enough data to cause the report to run slowly enough that there is a timeout.
Longer term, we'll solve this by just creating a page that looks for the completed report periodically, and loads it up when it's ready. But for now, if it's possible, we'd like a quick fix to solve the immediate problem.
Is there a way to extend the timeout period for the single webpage being served up?
I found this which seemed to indicate it was sort of possible (but which seems like a very bad idea, because it changes the entire website for the duration of the web call, and worse, it seems like it might have problems with multiple hit synchronization as well, possibly leaving the longer timeout on for the entire site)
I also found this locally, but it didn't end up answering the question (though it did offer the longer term solution that we'll be moving toward.)