Justin Lipton - 2005-10-25

Logged In: YES
user_id=577796

Hi Carl - code reads like this:
try {
if (isDav < 2) { // We require dav level 2 (i.e.
including locks)
int flags = DAVException.DAV_NO_LOCKS_SUPPORTED;
if (isDav < 1)
flags |= DAVException.DAV_NOT_SUPPORTED;
throw new DAVException(
"Server does not support required
WebDAV level 2", root

.getWebdavResource().getStatusCode(), flags);
}
} catch (HttpException e) {
throw new IOException("Bad mojo");
}

So it looks like it's just the locking.
Regards,
Justin.