<pre>Traceback (most recent call last):
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1535, in __call__
rv = self.handle_exception(request, response, e)
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1529, in __call__
rv = self.router.dispatch(request, response)
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1278, in default_dispatcher
return route.handler_adapter(request, response)
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1102, in __call__
return handler.dispatch()
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 572, in dispatch
return self.handle_exception(e, self.app.debug)
File "C:\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 570, in dispatch
return method(*args, **kwargs)
File "C:\pramantha\chronostriples\main.py", line 65, in get
return self.response.write(query(self.request.get('query')))
File "C:\pramantha\chronostriples\flankers\graphtools.py", line 25, in query
response = graph().query(q)
File "lib\rdflib\graph.py", line 1078, in query
query_object, initBindings, initNs, **kwargs))
File "lib\rdflib\plugins\sparql\processor.py", line 72, in query
parsetree = parseQuery(strOrQuery)
File "lib\rdflib\plugins\sparql\parser.py", line 1052, in parseQuery
return Query.parseString(q, parseAll=True)
File "C:\pramantha\chronostriples\pyparsing.py", line 1125, in parseString
raise exc
ParseException: Expected end of text (at char 145), (line:1, col:146)
It happens only with this particular query, the other test queries work fine.
Probably should consider parsing the query parameter before sending the query to datastore?
When I send this urlencoded request to
/ds
This errors pops up:
It happens only with this particular query, the other test queries work fine. Probably should consider parsing the query parameter before sending the query to datastore?
Test available here