use of it.unibo.arces.wot.sepa.engine.processing.QueryProcessor in project SEPA by arces-wot.
the class QueryProcessorTest method main.
public static void main(String[] args) throws SEPAProtocolException, SEPAPropertiesException {
SPARQL11Properties properties = new SPARQL11Properties("endpoint.jpar");
System.out.println(properties.toString());
processor = new QueryProcessor(properties, null);
while (true) {
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(processor.process(new QueryRequest("select ?s ?p ?o where {?s ?p ?o}"), 0));
}
}
Aggregations