Hi all,
I have a database which contains XMIs and would like to process
these with UIMA-AS.
My pipeline looks like this:
Database Reader AE
Result Writer AE
I made an AAE composed out of the two AEs, the first gets a CAS with an
ID encoded into its sofa. It then fetches the XMI from the DB, and calls
XmiCasDeserializer.deserialize to load it into the CAS.
After that it inserts an ID FeatureStructure into the CAS (via createFS
and addFsToIndexes).
The second AE should just access the content of the CAS, but the ID FS added
by the first AE is missing. Why is it missing? (input/output
capabilities are not specified)
The content which is in the XMI can be accessed.
Is it safe to use XmiCasDeserializer.deserialize? Or should it be done
in some other way?
Jörn