All Questions
2 questions
8
votes
1
answer
4k
views
Web service proxy that switches endpoint URLs in the event of a TimeoutException
I am creating a service (FaultTolerantCommunication) that wraps a call to a (web) service. Its responsibility is to switch the endpoint URL in the event of a ...
3
votes
1
answer
6k
views
JavaScript "recursion" via setTimeout
I understand that because of JavaScript's single-threaded execution, long loops or recursive calls could make the browser unresponsive while they execute.
I thought about simulating recursion using <...