Re: Concurrent requests for Java's HTTP Server

2010-03-08 Thread Brendan Ribera
This seems to be more of a Java question than a Clojure one, but I'll take a stab at it anyway. I'm assuming you refer to com.sun.net.httpserver.HttpServer. Per the docs, "Management of threads can be done external to this object by providing a Executor<../../../../../../../../../api/java/util/con

Concurrent requests for Java's HTTP Server

2010-03-08 Thread Abhay
Hi All, I have created a small app using the java's base HTTP server shiped with JDK. I observed that the HTTP requests cannot execute simultaneously. For eg, my request 1 is blocking my request 2. As soon as I unblock the request, other request gets completed. Does this HTTP Server provides con