Newbie deployment questions

2011-03-23 Thread Barry Hathaway
I'm new to UIMA and have a couple of simple deployment questions. 1.) What is the common methods of deploying a simple application? I tried putting the classes and the descriptors in a jar file; however, it doesn't seem to find the descriptors. Both jarpath and datapath point to the dir

[ANNOUNCE] Apache UIMA AS 2.3.1 released

2011-03-23 Thread Jaroslaw Cwiklik
The Apache UIMA team is pleased to announce the release of version 2.3.1 of the Apache UIMA AS, which includes asynchronous scaleout capabilities together with the base Apache UIMA SDK. The UIMA AS 2.3.1 binaries and source are available for download from: http://uima.apache.org/downloads.cgi UIM

Re: JCasGen omitting fully-qualified class name?

2011-03-23 Thread Marshall Schor
ok, this is a case we didn't think of - one where the no-qualifier version works but is overridden by another import, caused by another feature referencing the other version of this. For now, a workaround is to name your org.company.types.Annotation to something other than ...Annotation. -Marshal

Re: JCasGen omitting fully-qualified class name?

2011-03-23 Thread Frank Enders
Marshall, thanks for your quick response. > Can you provide more details on how you are seeing that Annotation in this case > is being translated to uima.tcas.Annotation, in your setup? org.apache.uima.jcas.tcas.Annotation gets imported within Sentence.java: "import org.apache.uima.jcas.tcas.Ann

[ANNOUNCE] Apache UIMA AS 2.3.1 released

2011-03-23 Thread Jaroslaw Cwiklik
The Apache UIMA team is pleased to announce the release of version 2.3.1 of the Apache UIMA AS, which includes asynchronous scaleout capabilities together with the base Apache UIMA SDK. The UIMA AS 2.3.1 binaries and source are available for download from: http://uima.apache.org/downloads.cgi UIM

Re: Not seeing the document names in the Document Analyzer

2011-03-23 Thread Marshall Schor
Now posted as a Jira: https://issues.apache.org/jira/browse/UIMA-2097 -Marshall On 3/22/2011 1:54 PM, Marshall Schor wrote: > OK - found the problem. > > The Document analyzer uses a component "FileSystemCollectionReader" to read > the > files. This component inserts into the CAS the name of the

Re: JCasGen omitting fully-qualified class name?

2011-03-23 Thread Marshall Schor
When I did this, I saw that 1) JCasGen generates the Classes into the same "package": org.company.types 2) This package has the classes: Sentence.java Sentence_type.java Annotation.java Annotation_type.java 3) The Sentence type extends "Annotation", which is *not* imported. This

JCasGen omitting fully-qualified class name?

2011-03-23 Thread Frank Enders
Hi together, in a TypeSystem we have a type "org.company.types.Annotation". Now we have another type "org.company.types.Sentence" which uses "org.company.types.Annotation" as its supertypeName. When we generate the corresponding Java classes using JCasGen the fully-qualified name seems to be omitt