views:

40

answers:

3

I would like to send quite large chunks of data in a binary format over HTTP, also called HTTP Tunneling.

I would like to use this technique using Java for a few Java Swing applications and maybe an Android application. Is there any good Java libraries for HTTP Tunneling?

A: 

You can certainly use Apache Commons HTTP library to send HTTP.

duffymo
+1  A: 

JHttpTunnel

Peter Knego
A: 

HttpURLConnection. No need for another library.

EJP