You can also use Tomcat's RequestDumperValve or AccessLogValve to log
request before they even reach Axis. The request dumper produces quite a
bit of logging info, though - headers, cookies etc.
In server.xml uncomment this:
for the request dumper,
or uncomment and tweak this:
directory="logs"
Hi Marko,
One option is to configure your web service to have a request handler that
captures the incoming request. This handler would grab the SOAP request and
then log it. But I am not sure if that meets your requirement of "before axis
begins to parse them".
To save you some work, the wsabi
Hi,
I’m using WSDL2Java generated code for my services. Every once in
a while tomcat crashes and needs restarting.
I would like to log all incoming requests before axis begins to parse
them. Is there any ideas how to do this (where should I write my logging
sentence)?
Marko