eroux commented on issue #1533:
URL: https://github.com/apache/jena/issues/1533#issuecomment-1249548979

   After some debugging, it looks like the context should be at the endpoint 
level. So for the record, the correct answer is
   
   ```ttl
   [] rdf:type fuseki:Server ;
      fuseki:services (
        :corerw
      ) .
   
   :corerw rdf:type fuseki:Service ;
       fuseki:name                       "corerw" ;     # name of the dataset 
in the url
       fuseki:endpoint [ 
           fuseki:operation fuseki:query ; 
           fuseki:name "query" ;
           ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue 
"10000,60000" ] ;
           ja:context [ ja:cxtName "arq:optReorderBGP" ;  ja:cxtValue false ] ;
       ] ;
       fuseki:serviceUpdate              "update" ;   # SPARQL update service
       fuseki:serviceUpload              "upload" ;   # Non-SPARQL upload 
service
       fuseki:serviceReadWriteGraphStore "data" ;     # SPARQL Graph store 
protocol (read and write)
       fuseki:dataset                    :core_text_dataset ;
       .
   ```


-- 
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