Return-Path: Delivered-To: apmail-incubator-uima-user-archive@locus.apache.org Received: (qmail 76105 invoked from network); 24 Jun 2008 13:54:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Jun 2008 13:54:21 -0000 Received: (qmail 19495 invoked by uid 500); 24 Jun 2008 13:54:22 -0000 Delivered-To: apmail-incubator-uima-user-archive@incubator.apache.org Received: (qmail 19482 invoked by uid 500); 24 Jun 2008 13:54:22 -0000 Mailing-List: contact uima-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: uima-user@incubator.apache.org Delivered-To: mailing list uima-user@incubator.apache.org Received: (qmail 19471 invoked by uid 99); 24 Jun 2008 13:54:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jun 2008 06:54:21 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [217.109.185.18] (HELO pinea.xerox.fr) (217.109.185.18) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jun 2008 13:53:30 +0000 Received: from meije.grenoble.xrce.xerox.com (unknown [13.202.220.10]) by pinea.xerox.fr (Postfix) with ESMTP id 38B8E23D332 for ; Tue, 24 Jun 2008 15:53:47 +0200 (CEST) Received: from chauvet.grenoble.xrce.xerox.com (chauvet.grenoble.xrce.xerox.com [13.202.220.155]) by meije.grenoble.xrce.xerox.com (8.13.8/8.13.8) with ESMTP id m5ODrlxJ012603 for ; Tue, 24 Jun 2008 15:53:47 +0200 Message-ID: <4860FC6B.5060504@xrce.xerox.com> Date: Tue, 24 Jun 2008 15:53:47 +0200 From: Aaron Kaplan User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: uima-user@incubator.apache.org Subject: null fsIndexRepository Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org My annotator's process method begins like this: public void process(JCas jcas) throws AnalysisEngineProcessException { FSIndexRepository repo = jcas.getFSIndexRepository(); I'm getting a NullPointerException at the line after that, because repo is null. How can this happen? Possibly relevant: the CAS I'm processing was loaded by the CVD from an XMI file. In the CVD I see an index called blah.blah.blah.MyType_GeneratedIndex, whereas I expected to see an index called MyTypeIndex that we defined. -Aaron