Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 21076 invoked from network); 22 Oct 2009 07:59:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Oct 2009 07:59:22 -0000 Received: (qmail 60374 invoked by uid 500); 22 Oct 2009 07:59:22 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 60290 invoked by uid 500); 22 Oct 2009 07:59:22 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 60282 invoked by uid 99); 22 Oct 2009 07:59:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Oct 2009 07:59:22 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Oct 2009 07:59:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8AE91234C1EF for ; Thu, 22 Oct 2009 00:58:59 -0700 (PDT) Message-ID: <141210174.1256198339567.JavaMail.jira@brutus> Date: Thu, 22 Oct 2009 07:58:59 +0000 (UTC) From: "Stefan Guggisberg (JIRA)" To: dev@jackrabbit.apache.org Subject: [jira] Commented: (JCR-2359) infinite recursion creating a nodeType based on an existing nodeType In-Reply-To: <2080501447.1256134679434.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/JCR-2359?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12768603#action_12768603 ] Stefan Guggisberg commented on JCR-2359: ---------------------------------------- > Sorry for the duplicate issue... it's a legitimate issue for version 1.6, so no need for excuses ;) thanks for reporting it! > infinite recursion creating a nodeType based on an existing nodeType > -------------------------------------------------------------------- > > Key: JCR-2359 > URL: https://issues.apache.org/jira/browse/JCR-2359 > Project: Jackrabbit Content Repository > Issue Type: Bug > Components: jackrabbit-core > Affects Versions: 1.6.0 > Reporter: Luca Tagliani > > When I try to create a nodeTypeTemplate using the following code, it's thrown an InvalidNodeTypeException during the registration: > NodeTypeManagerImpl ntmgr = (NodeTypeManagerImpl) session.getWorkspace().getNodeTypeManager(); > NodeTypeTemplate ntt = null; > NodeTypeImpl ntImpl = null; > ntImpl = ntmgr.getNodeType("wr:group"); > ... > ... (adding new PropertyDefintion) > ... > ntt = ntmgr.createNodeTypeTemplate(ntImpl); > ntmgr.registerNodeType(ntt, true); ---> here's thrown the exception > The nodeType wr:group is based on three other nodeType. > If I inspect the new ntt, I see that the supertype are three, but all equal to "wr:group" -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.