On Wed, 27 Feb 2002, Nitin Vira wrote:

> Date: Wed, 27 Feb 2002 09:47:26 -0800
> From: Nitin Vira <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: Tomcat Users List <[EMAIL PROTECTED]>
> Subject: Debugging JSPs and Servlets
>
> Hello,
>
> I am trying to create an environment that will assist in debugging jsps,
> i think one of the basic ways to do debugging is through logging, I want
> to log various request coming in along with the request parameters, i
> checked the access loggs but they only logg GET request also it doesnt
> logg the parameters, is there anyway i can logg POST request too along
> with the request parameters, i can possibly use a filter to do it, will
> that be a right approach also can i configure a filter to run for all
> the servlets? Also is it possible to logg something like forwards to
> another page and including other pages, also if you have any other
> suggestions to add features that will assist in debugging that i can
> implement i will greatly appreciate it.
>
> Thanks,
> Nitin
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>

Logging stuff for yourself is a nice use case for a Filter.  In fact,
there's an example filter that does this kind of thing in the examples
webapp included with Tomcat 4.  Source code is in file
"/WEB-INF/classes/filters/RequestDumperFilter.java".  You can see how it's
configured by looking at the web.xml file for this app.

Craig



--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to