I have a server that accepts post requests. The post is sent from the Apache libraries.
BufferedReader input = new BufferedReader(new InputStreamReader(socket.getInputStream())); "some code here handles status line" While (input.ready) { line = input.readLine() if (line.length() == 0) break; System.out.println(line); } The problem is i never actually get the body? I only get the headers?
Thank you for any help