posted 21 years ago
Server's access log stores all the URL's requests from clients.
If you use POST, you will find a entry like,
/login.jsp
Whereas if you use GET, you will find,
/login.jsp?usr=vijay&pwd=1234
If you have Apache based web servers (IBM, Oracle and most Unix Web Servers), you will find this file named access.log in the logs directory. Some sample entries for your reference:
127.0.0.1 - - [26/Mar/2003:16:52:28 -0500] "GET /TechnologySamples/BasicCalculator/BasicCalculatorServlet?operand1=5&operation=add&operand2=5&calculate=Calculate%21 HTTP/1.1" 200 2454
127.0.0.1 - - [26/Mar/2003:16:55:10 -0500] "POST /TechnologySamples/PageReturner/PageReturner HTTP/1.1" 200 1924
[ June 12, 2003: Message edited by: Vijayakumar Gopalakrishnan ]
SCJP, SCWCD, SCBCD, SCEA5