Re: HTTP QueryExecution has been closed

2023-10-29 Thread Andy Seaborne
the following code try (QueryExecution qex = QueryExecution.create(getQuery(), rowModel)) { return qex.execConstructDataset(); } throw the "HTTP QueryExecution has been closed" exception? Full code here: https://github.com/AtomGraph/LinkedDataH

Re: HTTP QueryExecution has been closed

2023-10-27 Thread Martynas Jusevičius
de > > > > try (QueryExecution qex = QueryExecution.create(getQuery(), > > rowModel)) > > { > > return qex.execConstructDataset(); > > } > > > > throw the "HTTP QueryExecution has been closed" exception? > > Full code here

Re: HTTP QueryExecution has been closed

2023-10-27 Thread Martynas Jusevičius
o understand in which circumstances can the following code > > try (QueryExecution qex = QueryExecution.create(getQuery(), rowModel)) > { > return qex.execConstructDataset(); > } > > throw the "HTTP QueryExecution has been closed" except

HTTP QueryExecution has been closed

2023-10-27 Thread Martynas Jusevičius
Hi, I'm trying to understand in which circumstances can the following code try (QueryExecution qex = QueryExecution.create(getQuery(), rowModel)) { return qex.execConstructDataset(); } throw the "HTTP QueryExecution has been closed" exception? Full