afs opened a new issue, #1723:
URL: https://github.com/apache/jena/issues/1723

   ### Version
   
   4.7.0
   
   ### Feature
   
   Dispatching a request to an endpoint URL with multiple choices looks at the 
request to see which SPARQL operation (query, update, GSP) it is. The default 
is a plain HTTP request (REST-like) on the endpoint which is the quads 
extension of GSP (no `?graph=`, no `?default` - plain POST/GET etc with a 
content type that isn't registered (query and update are registered).
   
   This minor enhancement is for Fuseki modules to provides for a different 
default operation for the plain REST-like operation. Usage includes endpoint 
specific error handling or extension code that can further decide the operation 
to execute.
   
   Examples of multi-choice endpoints:
   2 operations on the dataset URL `/dataset`:
   ```
       fuseki:endpoint [ fuseki:operation fuseki:query ; ] ;
       fuseki:endpoint [ fuseki:operation fuseki:update ; ] ;
   ```
   or 2 on `/dataset/sparql`:
   ```
       fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name "sparql" ] 
;
       fuseki:endpoint [ fuseki:operation fuseki:update ; fuseki:name "sparql"; 
] ;
   ```
   
   
   ### Are you interested in contributing a solution yourself?
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to