The "multiple" can be used for both properties and child nodes. See the example cnd on http://jackrabbit.apache.org/node-type-notation.html (at the end of the first example box).
Please note that same-name siblings are generally not recommended, as their paths are not stable: the index is added dynamically through appending "[i]" to the name, hence removing a same name sibling changes the absolute paths of its siblings. See also rule #4 at http://wiki.apache.org/jackrabbit/DavidsModel Regards, Alex On Fri, Oct 24, 2008 at 5:31 PM, Julio Castillo <[EMAIL PROTECTED]> wrote: > Van, > I'm confused. > I know the use of the "multiple" property for elements within a node (e.g. > [xxx:file] > nt:file > - xxx:id (string) > - xxx:displayName (string) > - xxx:keywords (string) multiple > > This allows me to specify multiple values for a given property. But how do I > specify so that it allows multiple nodes of the same name for the same > parent? > > ** julio > > > -----Original Message----- > From: iapilgrim [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 23, 2008 7:38 PM > To: [email protected] > Subject: Re: How to allow for duplicate entries > > > Hi, > You could allow entry duplication by adding this instruction to your cnd. > // and supports same name siblings > multiple > Hope this help, > Van > > > Julio Castillo wrote: >> >> I get the following error when trying to add a second node with the >> same node name ("First Title") under the same folder. I'm doing this >> remotely through the SPI/Webdav interface (latest versions). >> >> "Cannot add child node 'First Title' to /content/blog: colliding with >> same-named existing node." >> >> Is there a way to configure jackrabbit to allow me to do that? I am >> able to do if I only use nt:unstructured type nodes, but then I can't >> put this type of nodes inside a nt:folder structure, so I tried a >> combination, but it didn't work. The following is a sample of my >> preconfigured types: >> >> ---------------------------- >> <nt='http://www.jcp.org/jcr/nt/1.0'> >> <xxx='http://www.edgenuity.com/edge'> >> >> [xxx:file] > nt:file >> - xxx:id (string) >> - xxx:displayName (string) >> >> [xxx:blogEntry] > xxx:file, nt:unstructured >> >> [xxx:folder] > nt:folder >> -------------------------------- >> >> Thanks >> >> Julio Castillo >> >> >> > > -- > View this message in context: > http://www.nabble.com/How-to-allow-for-duplicate-entries-tp20137727p20143248 > .html > Sent from the Jackrabbit - Users mailing list archive at Nabble.com. > > -- Alexander Klimetschek [EMAIL PROTECTED]
