Web Development
javaanon.txt
Associated article: HTTP-Based Anonymous Communication Channels
Tags: Web Development Mobile
Published source code accompanying the article by Marc Waldman and Stefan Kopsell in which they show how to build a general-purpose request-reply anonymous communication channel. Also see JAVAANON.ZIP.
HTTP-Based Anonymous Communication Channels
by Marc Waldman and Stefan Kopsell
Listing One
SocketChannel japConnection;
try{
japConnection=SocketChannel.open();
japConnection.connect(new
InetSocketAddress("localhost",4000));
}
catch(Exception e){
System.err.println("Unable to connect to JAP - exiting");
...


