Re: JSP Code to capture HTTP headers [includes shameless plug]

2006-07-31 Thread Christopher Schultz
Kaushal, > I have a sample php code, [snip] > I wanted this to work in JSP(Java Server Pages) How about the SessionSnooper.jsp from this page: http://www.christopherschultz.net/projects/java/ I am the author. -chris signature.asc Description: OpenPGP digital signature

Re: JSP Code to capture HTTP headers

2006-07-31 Thread Velpi
http://shib.kuleuven.be/download/sp/test_scripts/shibenv.jsp.txt -- Velpi Kaushal Shriyan wrote: Hi ALL I have a sample php code, ENV $value) { echo "Key: $key, value: $value"; echo ""; } ?> SERVER $value) { echo "Key: $key, value: $value"; echo ""; } ?> COOKIE $v

Re: JSP Code to capture HTTP headers

2006-07-31 Thread Kaushal Shriyan
On 7/31/06, Shinya Koizumi <[EMAIL PROTECTED]> wrote: use these methods <%= request.getParameter() %> <%= request.getParameterNames() %> or you look up javax.serlvet.HttpServletRequest - Original Message - From: "Kaushal Shriyan" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent:

Re: JSP Code to capture HTTP headers

2006-07-31 Thread Shinya Koizumi
use these methods <%= request.getParameter() %> <%= request.getParameterNames() %> or you look up javax.serlvet.HttpServletRequest - Original Message - From: "Kaushal Shriyan" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, July 31, 2006 12:10 AM Subject: JSP Code to ca