RE: AW: AW: Using UIMA for structured data sources
Gert,
As Greg pointed out, UIMA is just an API spec with Java (and soon C++)
Implementation(s), but you can iterate over UIMA's "CAS" annotations and
then use another existing API, Jena, to create and persist RDF as XML or
to a DB via JDBC:
http://jena.sourceforge.net/
This has a class Triple for RDF statements, an interface RDFXMLWriterI,
and so on.
Your requirement sounds like such a piec of code might be useful for
more people as well, so you might want to consider contributing your
solution to the UIMA codebase, which would have the benefit to the
community that they don't need to re-write that glue code, and to you
that you would get free extensions and bug patches from other people who
choose to use it.
Best regards,
Jochen
-----Original Message-----
From: Greg Holmberg [mailto:holmberg2066@...]
Sent: Monday, August 04, 2008 7:13 PM
To: uima-user@...
Cc: Villemos, Gert
Subject: Re: AW: AW: Using UIMA for structured data sources
Gert--
UIMA does't store at all. It's just an API you call--document in,
annotations out. That is to say, Java objects. What you do with those
(Continue reading)