Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Running the following code:
String updateString = "INSERT {} WHERE
";
UpdateRequest update = UpdateFactory.create(updateString);
UpdateProcessor up = UpdateExecutionFactory.createRemote(update,
"http://localhost:3131/ds/update");
up.execute();
Causes the Fuseki server to throw this error: 400 Encountered " "?" "? ""
This is caused by the client generating incorrect SPARQL with an extra ? (as viewed from the Fuseki log): INSERT { } WHERE
This bug may be similar to JENA-378.