public class WebdavFixFilter extends Object implements Filter
TODO: Update this filter to recognise specific MS clients and apply the appropriate workarounds for that particular client
As a filter, this is configured in web.xml like any other Filter. You usually want to map this filter to whatever your WebDAV servlet is mapped to.
In addition to the issues fixed by this Filter, the following issues have also been observed that cannot be fixed by this filter. Where possible the filter will add an message to the logs.
XP x64 SP2 (MiniRedir Version 3790)
Modifier and Type | Field and Description |
---|---|
protected static StringManager |
sm |
Constructor and Description |
---|
WebdavFixFilter() |
Modifier and Type | Method and Description |
---|---|
void |
destroy()
Called by the web container to indicate to a filter that it is being
taken out of service.
|
void |
doFilter(ServletRequest request,
ServletResponse response,
FilterChain chain)
Check for the broken MS WebDAV client and if detected issue a re-direct
that hopefully will cause the non-broken client to be used.
|
void |
init(FilterConfig filterConfig)
Called by the web container to indicate to a filter that it is being
placed into service.
|
protected static final StringManager sm
public void init(FilterConfig filterConfig) throws ServletException
Filter
The web container cannot place the filter into service if the init method either:
init
in interface Filter
filterConfig
- The configuration information associated with the
filter instance being initialisedServletException
- if the initialisation failspublic void destroy()
Filter
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException
doFilter
in interface Filter
request
- The request to processresponse
- The response associated with the requestchain
- Provides access to the next filter in the chain for this
filter to pass the request and response to for further
processingIOException
- if an I/O error occurs during this filter's
processing of the requestServletException
- if the processing fails for any other reasonCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.