RE: Query aborts with 502 behind reverse proxy

2014-12-01 Thread Neubert, Joachim
Hi Andy, I'm now quite sure that the timeout problem is not related to our server itself. But there is indeed a load balancer involved (and perhaps other components out of my scope), and if I circumvent that, the query works even with the reverse proxy. Not sure if _that_ issue can be fixed.

Adding, Deleting, Update Jena Model through a remote SPARQL endpoint

2014-12-01 Thread Juan Sequeda
All, I currently have a local instance of Jena TDB, which I create: String directory = ; Dataset dataset = TDBFactory.createDataset(directory); And I can insert a Jena model to the dataset: String nameURI = ...; Model m = ... ; dataset.begin(ReadWrite.WRITE); try {

Re: Adding, Deleting, Update Jena Model through a remote SPARQL endpoint

2014-12-01 Thread Andy Seaborne
DatasetAccessor (this is the SPARQL Graph Store protocol, client side) which works for local and remote. You may also be interested in Stephen's work on a SPARQL client interface to pull all the different aspects together: https://svn.apache.org/repos/asf/jena/Experimental/jena-client/