RE: Logging problem SOAP based web service

2004-08-20 Thread timo.m.jaakola
=command value=somecmd / parameter name=user value=cn=someuser / /foo-request /someService /s:Body /s:Envelope thanks, -Timo -Original Message- From: ext Tim Funk [mailto:[EMAIL PROTECTED] Sent: 18 August, 2004 13:46 To: Tomcat Users List Subject: Re: Logging problem SOAP

Re: Logging problem SOAP based web service

2004-08-20 Thread QM
On Fri, Aug 20, 2004 at 02:02:03PM +0300, [EMAIL PROTECTED] wrote: : What are Filters and how they can be used? Google servlet filter -- it's available in servlet spec 2.3 and later. Essentially, you can set up a series of these filters to wrap a call to your webapp, based on URI path or file

Re: Logging problem SOAP based web service

2004-08-18 Thread Tim Funk
You might need to use a Filter to stuff the things you need to log into the ServletRequest. Then you can use this: http://marc.theaimsgroup.com/?l=tomcat-userm=109273888725607w=2 -Tim [EMAIL PROTECTED] wrote: Hi, I have a SOAP based web service running on tomcat 4.1.30. This service should write

Re: Logging problem SOAP based web service

2004-08-18 Thread QM
On Wed, Aug 18, 2004 at 11:46:19AM +0300, [EMAIL PROTECTED] wrote: : I have a SOAP based web service running on tomcat 4.1.30. This service should : write a log containing client's IP address and some attributes from : SOAP-message body (inside SOAP envelope). Is this possible somehow? What's