Return-Path: X-Original-To: apmail-jackrabbit-dev-archive@www.apache.org Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 433749153 for ; Fri, 23 Mar 2012 13:43:55 +0000 (UTC) Received: (qmail 85630 invoked by uid 500); 23 Mar 2012 13:43:54 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 85574 invoked by uid 500); 23 Mar 2012 13:43:54 -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 85567 invoked by uid 99); 23 Mar 2012 13:43:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Mar 2012 13:43:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Mar 2012 13:43:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 3F446342674 for ; Fri, 23 Mar 2012 13:43:28 +0000 (UTC) Date: Fri, 23 Mar 2012 13:43:28 +0000 (UTC) From: "Alex Parvulescu (Updated) (JIRA)" To: dev@jackrabbit.apache.org Message-ID: <2051574159.7879.1332510208260.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <423392926.2804.1332433462434.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (JCR-3270) Error instantiating lucene search index in Turkish Regional Setting MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCR-3270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Parvulescu updated JCR-3270: --------------------------------- Attachment: JCR-3270.patch Attaching proposed patch (on trunk jr-core). I'm wondering if it's as simple as that: replacing name.substring(3, 4).toLowerCase() with name.substring(3, 4).toLowerCase(Locale.ENGLISH) > Error instantiating lucene search index in Turkish Regional Setting > ------------------------------------------------------------------- > > Key: JCR-3270 > URL: https://issues.apache.org/jira/browse/JCR-3270 > Project: Jackrabbit Content Repository > Issue Type: Bug > Components: jackrabbit-core > Affects Versions: 2.2.1 > Reporter: Adrien DE GEORGES > Attachments: JCR-3270.patch > > > There is an issue when changing regional setting to Turkish. > It fails when starting a repository, instantiating the lucene search index due to the following issue : > org.apache.jackrabbit.core.config.ConfigurationException: Configured class org.apache.jackrabbit.core.query.lucene.SearchIndex does not contain a property named indexingConfiguration > at > org.apache.jackrabbit.core.config.BeanConfig.newInstance(BeanConfig.java > :205) > at > org.apache.jackrabbit.core.config.RepositoryConfigurationParser$1.getQue > ryHandler(RepositoryConfigurationParser.java:631) > at > org.apache.jackrabbit.core.config.RepositoryConfig.getQueryHandler(Repos > itoryConfig.java:1013) > This issue is known in java world, due to lower case conversion of 'I' character (in Turkish locale). JackRabbit source code try to instantiate the indexing configuration during the repository starting and is accessing indexingConfiguration property. It instantiates a setter for this property with a bad 'i' character. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira