Hi there, I want to use a combination of a Tomcat server and the Jena APIs to expose a uniform SPARQL endpoint URI.. e.g. /resource/sparql
Unfortunately, however, for each procedure SELECT, DESCRIBE, CONSTRUCT, and ASK requires a different method call from QueryExecution. e.g. qe.execConstruct() qe.execSelect() qe.execDescribe() So far, my only solution is to expose /sparql/select , /sparql/describe , /sparql/construct , /sparql/ask , so that I am able to make the correct method requests in QueryExecution. What I really want is a /sparql URI for my RDF store (which is using the Jena APIs to persist the Model with mySql). I would have expected a QueryExecution method: qe.execSparql(), but is there one? Unless I've missed a more fundamental issue, can anyone help me solve this? Thanks, -- Rob Stewart
