Hi folks! I have a Model full of triples, and I wish I could "inject" these data into a remote endpoint. is there a helper class to create a SPARQL/Insert query from the content of the Model? Otherwise, what is the best way to create such a query? (Iterating the triples, removing the blank nodes, appending SPARQL statements to a StringBuffer. And that's all?
More advanced question: is it possible to monitor the lifecycle of a Model (add/remove), and create a SPARQL/Update that mimicks that lifecycle (to be sent on a remote endpoint)? What is the best way to do that with Jena? ModelChangedListener (and string appending)? Your points of view are highly welcome.
