In my application i am not using any custom node type. all the node that are created are nt:unstructured but as per the following information
Each Jackrabbit instance has a NodeTypeRegistry which is created on start-up and populated with the set of built-in node types (these include both those required by the JCR specification and others required by the Jackrabbit implementation). of http://jackrabbit.apache.org/node-types.html. do i need to create the CND file i have a CND file it looks like /* orig.namespaces */ <mix = 'http://www.jcp.org/jcr/mix/1.0'> <nt = 'http://www.jcp.org/jcr/nt/1.0'> <jcr = 'http://www.jcp.org/jcr/1.0'> [nt:document] > nt:file - jcr:description (string) - jcr:versionComment (string) - jcr:creationDate (date) - jcr:lastModified (date) - jcr:attachedFileName (string) - jcr:attachedFileSize (string) - jcr:creator (string) - jcr:modifier (string) - jcr:checkedOutBy (string) - jcr:title (string) - jcr:discussionComment (string) - jcr:commentBy (string) can you please help me to interpret this file. what my understanding is,we are trying to create a custom node called document that has the following properties - jcr:description (string) - jcr:versionComment (string) - jcr:creationDate (date) - jcr:lastModified (date) - jcr:attachedFileName (string) - jcr:attachedFileSize (string) - jcr:creator (string) - jcr:modifier (string) - jcr:checkedOutBy (string) - jcr:title (string) - jcr:discussionComment (string) - jcr:commentBy (string) Please correct me if i am wrong -- View this message in context: http://www.nabble.com/What-is-the-use-of-Registering-Node-Types-tp22218021p22218021.html Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
