Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Colleague of mine contacted me asking if it is possible to stop HTTP workers if the request takes to long. I have to admit, I found the question quite odd, and really not befitting for a service-based environment, but it got me thinking.

If you have large requests that really can take a long time to complete (> 5 secs e.g.) how could you stop them when you want to avoid your server from being swamped?

For reference: I'm using Glassfish v2.1.1. But general helpful comments are also appreciated!

share|improve this question

1 Answer

Timing out a http request is web container specific. For example for JBoss you can find more info here but if you expect that behavior it would be better to redesign your architecture to handle the calls asynchronously (maybe with MDB's)

share|improve this answer
1  
Note that that thread ends with the same, open question: "But they do not stop the execution within JBoss I assume. In fact, is there any way JBoss can stop execution of a timed-out request?" – Thilo Aug 25 '11 at 7:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.