public TupleResult sendTupleQuery(QueryLanguage ql, String query, Dataset dataset,
boolean includeInferred, Binding... bindings)
throws StoreException, MalformedQueryException
{
final HTTPRequest request = pool.post();
request.sendForm(getQueryParams(ql, query, dataset, includeInferred, bindings));
Callable<TupleResult> task = new Callable<TupleResult>() {
public TupleResult call()
throws Exception
{