Hello

Filter mapped to /* should see everything that reach it's application.
This include your axis service.
I suggest you investigate to possibility that your ignoredUrls or
ignoredPatterns apply to all your axis request, making your filter
ignore them. If you see not output from your filter for axis request,
then check the code of filter, because tomcat will trigger it.

If you have doubt, try to get stackTrace during an axis request (either
by making a fault during axis response, either by using a slow response
and sneding signal 3 to JVM)


En l'instant précis du 20/09/07 16:47, Jim Cox s'exprimait en ces termes:
> I developed a simple logging filter to debug some performance problems
> on a Tomcat 5.0.19 installation. It works well for the requests it
> sees, but the filter does not see requests serviced by a
> wsdd-deployed Axis servlet.
>
> Anyone have any help/info/pointers to offer?
>
> Only one webapp is defined on this server, the filter is mapped in
> web.xml with the following:
>
> <filter>
>   <filter-name>MyLogFilter</filter-name>
>   <filter-class>blah.blah.blah.MyLogFilter</filter-class>
>   <init-param>
>     <param-name>ignoredUrls</param-name>
>     <param-value>
>     </param-value>
>   </init-param>
>   <init-param>
>     <param-name>ignoredPatterns</param-name>
>     <param-value>
>     </param-value>
>   </init-param>
> </filter>
> <filter-mapping>
>   <filter-name>MyLogFilter</filter-name>
>   <url-pattern>/*</url-pattern>
> </filter-mapping>
>
> Axis is configured in the same web.xml file via:
>   <servlet>
>     <servlet-name>AxisServlet</servlet-name>
>     <display-name>Apache-Axis Servlet</display-name>
>     <servlet-class>
>         org.apache.axis.transport.http.AxisServlet
>     </servlet-class>
>   </servlet>  <servlet-mapping>
>     <servlet-name>AxisServlet</servlet-name>
>     <url-pattern>/top/*</url-pattern>
>   </servlet-mapping>
>
> The Axis details are specified by a "server-config.wsdd" file in the
> webapp's WEB-INF directory.
>
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>   


-- 
http://www.noooxml.org/


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to