hi
i'm not sure, if i understand what you try to achieve.
but the exception you get
<D:error>
<dcr:exception>
<dcr:class>javax.jcr.NoSuchWorkspaceException</dcr:class>
<dcr:message>jackrabbit</dcr:message>
</dcr:exception>
</D:error>
indicates that you probably try to access a workspace (or login
with a workspace name) that does not exist in the JCR repository.
if i am not mistaken 'jackrabbit' is the context name in the
default installation , which is the followed by a prefix (by
default: 'repository') and finally the workspace name (by
default: 'default')... this is the kind of href structure
the simple dav servlet expects.
see also:
o.a.j.webdav.server.AbstractWebdavServlet.java line 182
o.a.j.webdav.simple.DavSessionProviderImpl.java line 79
hope that helps
angela