Hey, I'm using DatasetAdapter to access a Graph Store. It seems to me however that it is not properly escaping graph URI when building the request URI.
4.2 Indirect Graph Identification (http://www.w3.org/TR/sparql11-http-rdf-update/#indirect-graph-identification) gives an example of "encoded graph URI". That is, graph URI http://localhost:8080/graphs/2013%20Danfoss%20MPHE.xlsx should appear as .../store?graph=http://localhost:8080/graphs/2013%2520Danfoss%2520MPHE.xlsx in the request URI. However I cannot see that DatasetAdapter is doing such escaping (it was easier to find the code on GrepCode than on Apache): http://grepcode.com/file/[email protected][email protected]@org$apache$jena$fuseki$http$DatasetAdapter.java This results in 400 Bad Request if graph URI has special characters like in this case. Can we call this a bug? Martynas graphityhq.com
