Listing 2: Run ( ) method.
chatServer = new URL(app.getDocumentBase(),cgiPath+"chat.cgi");
chatServerConnection = chatServer.openConnection();
chatServerConnection.setDoOutput(true);
chatServerConnection.setUseCaches(false);
chatServerConnection.setRequestProperty
("Content-type","application/octet-stream");
chatServerConnection.setRequestProperty
("Content-length",""+completeMessage.length());
DataOutputStream send = new DataOutputStream(chatServerConnection.getOutputStream());
send.writeBytes(completeMessage);
send.close();
Listing 3: Chat.CGI may be found...
Download the remaining Source Code Listings