Hi

confirmed:

the WebdavServlet's PROPPATCH method in tomcat 4 & 5 doesnt work

actually, it just isnt implemented.


the fact is not in the docs (afaik), on the contrary, several pages
in the jakarta site claim tomcat 4 > supports "webdav level 2", which is not true.


it is not in the bugtracker; but it may be considered
"not a bug", it's just not implemented.

the tomcat 5 source code simply reads

    /**
     * PROPPATCH Method.
     */
    protected void doProppatch(HttpServletRequest req,
                               HttpServletResponse resp)
        throws ServletException, IOException {

        if (readOnly) {
            resp.sendError(WebdavStatus.SC_FORBIDDEN);
            return;
        }

        if (isLocked(req)) {
            resp.sendError(WebdavStatus.SC_LOCKED);
            return;
        }

resp.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED);

}


$2c, *-pike


============


Internet search engines that take money from Web sites in exchange for prominent placement should make that practice clearer to Web users, federal regulators said Friday.Many search engine Web sites, including AltaVista, LookSmart and AOL Search, give preferred placement to paid advertisers. The Federal Trade Commission said that prime space can confuse Web users who are looking for the best response to their search, rather than ads for sites that paid up front.


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to