Hi, > On 8. Oct 2021, at 01:11, Ngo, Chuong X <chuong.x....@questdiagnostics.com> > wrote: > > I'm trying to call an endpoint that I deployed using UIMA AS. I am getting > the following error message: > > Feature "typeID" is not defined for type > "org.apache.ctakes.typesystem.type.textsem.IdentifiedAnnotation" > > What exactly is the error message referring to? I am using uimaFit.
If that is a message generated on the remote side, then it would seem that the remote side has an incomplete/outdated information about the type system. I can see that in the cTAKES 4.0.0.1 type system, the type has the feature. ``` <typeDescription> <name>org.apache.ctakes.typesystem.type.textsem.IdentifiedAnnotation</name> ... <featureDescription> <name>typeID</name> <description>The type of named entity (e.g. drug, disorder, ...)</description> <rangeTypeName>uima.cas.Integer</rangeTypeName> </featureDescription> ... ``` Maybe you are using different versions of cTAKES on the local/remote sides? Cheers, -- Richard