System.out in Applets
Hi all!
I have built an applet and within it I have established a servlet communication using HTTP POST using this:
// Open HTTP connection with Servlet
HttpTunnel msg = new HttpTunnel(new URL(serverURL + serverScript));
// Transmit log to Servlet using HTTP POST
msg.sendPostMessage(log);
Things are working perfectly but when I tried to add some extra code to for printing in the tomcat consol using "System.out.println("Transmission started")" no output is displayed!! My question is how can I print from an applet using System.out.println()?

