8081828384858687888990
DavPath path = new DavPath( p ); if( path.isRoot() ) { DavMethod dm = new PropFindMethod( m_rootProvider ); dm.execute( req, res, path ); } else { String context = path.get(0);
172173174175176177178179180181182
DavPath path = new DavPath( p ); if( path.isRoot() ) { DavMethod dm = new GetMethod( m_rootProvider ); dm.execute( req, res, path ); } else { DavMethod dm = new GetMethod( pickProvider(path.get(0)) );
178179180181182183184185186
} else { DavMethod dm = new GetMethod( pickProvider(path.get(0)) ); dm.execute( req, res, path.subPath(1) ); } } }
200201202203204205206207208209210
String p = new String(req.getPathInfo().getBytes("ISO-8859-1"), "UTF-8"); DavPath path = new DavPath( p ); dm.execute( req, res, path ); } /** * Implements the OPTIONS method. * * @param req The servlet request