How can i use http 1.1 pipelining from a desktop Java application (J2SE)?
I'm 开发者_如何转开发making a simple Java app that makes 40 requests (each request has a unique URL) to a define server ... there is a simple way to make that 40 request with HTTP 1.1? I need to use only 1 tcp connection...
Thanks in advance
Diego
Apache HttpClient supports HTTP 1.1 with persistent connections.
精彩评论