* @throws ServletException If the servlet has issues
*/
public void doPropFind( HttpServletRequest req, HttpServletResponse res )
throws IOException, ServletException
{
DavMethod dm = new PropFindMethod( m_attachmentProvider );
String p = new String(req.getPathInfo().getBytes("ISO-8859-1"), "UTF-8");
DavPath path = new DavPath( p );
dm.execute( req, res, path );
}