Facing problems during creating JsonLd + Hydra based Generic Client API in java using Apache-Jena?. Is there any projects exists for reference?

2017-02-01 Thread Ganesh Kumar
Here is my detailed question: http://stackoverflow.com/questions/41975128/creating-jsonld-hydra-based-generic-client-api-in-java-is-there-any-projects Please give suggestion to above question and more clarity about proper way to implement it . -- *Disclaimer:* * "This message is intended

About HttpOp.java in apache Jena

2016-08-30 Thread Ganesh Kumar
What exactly HttpContext , HttpAuthenticator ,HttpClient do in execHttpGet(...) function ? I tried to google it but I couldn't find explaination about them and how and where to use them? -- *Disclaimer:* * "This message is intended only for the use of the addressee and may contain

Re: inserting data into triplestore with less main memory foot print

2014-05-06 Thread Ganesh kumar
is to be appended to the existing graph then you need to use the add(Quad) or the add(Node, Node, Node, Node) method. If the data is to replace the existing named graph you can use the addGraph(Node, Graph) method instead. Rob On 06/05/2014 03:10, Ganesh kumar ganeshkumar1...@gmail.com

Re: inserting data into triplestore with less main memory foot print

2014-05-06 Thread Ganesh kumar
Thanks Andy. But I find the TDB model is deprecated. https://jena.apache.org/documentation/javadoc/tdb/com/hp/hpl/jena/tdb/TDBFactory.html Am I looking into the right one ? Thanks Ganesh On Tue, May 6, 2014 at 10:59 PM, Andy Seaborne a...@apache.org wrote: On 06/05/14 11:49, Ganesh kumar

inserting data into triplestore with less main memory foot print

2014-05-05 Thread Ganesh kumar
Hi All, I am trying to insert triples into Jena TDB (triples are added into simple models and then inserted). The models are built at runtime for a particular group of triples, and then it needs to be persisted into Jena TDB. Pseudocode: Resource node = getRdfModel().createResource(nodeStr);