2 messages in org.apache.jackrabbit.usersRe: How to make all nodes referensable?
FromSent OnAttachments
Evgeniy StrokinOct 1, 2007 8:17 am 
Bob WielerOct 2, 2007 8:38 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: How to make all nodes referensable?Actions...
From:Bob Wieler (bob.@gmail.com)
Date:Oct 2, 2007 8:38:02 am
List:org.apache.jackrabbit.users

Hi Gene,

We get around this by using a custom data handler configured in the webapp application. We replace the DefaultHandler in the config.xml with our own data handler that uses our own custom node types that are different from the default nt:file, nt:resource, and nt:folder. Our custom data handler also sets fields specific to our application but if all you need is to use different node types then your custom handler can just extend DefaultHandler and override the getCollectionNodeType(), getNodeType(), and getContenNodeType() methods.

Hope this helps,

Bob

On 10/1/07, Evgeniy Strokin <evge@yahoo.com> wrote:

Hello, I want to make all nodes referenceable by default. The problem is when I drop files in to the system using WebDAV (via webapp jackrabbit provider) my nodes are not referenceable. Can it be solved somehow?

Thank you Gene