0

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

Cowboy
  • 1

1 Answers1

0

Apache HttpClient supports HTTP 1.1 with persistent connections.

JB Nizet
  • 678,734
  • 91
  • 1,224
  • 1,255
  • Ok... seems to be the answer to my prays :) but... it seems to be a little bit complicate for the intended purposes of my app... I'm developing just a java example only to compare (times) to a already C# console app.. – Cowboy Feb 16 '11 at 14:55