@prefix rdfs: . @prefix rdf: . @prefix module: . @prefix joseki: . <> rdfs:comment "Server configuration and data source mapping for Joseki examples." . ## Server configuration <> a joseki:JosekiServer ; joseki:josekiSchema joseki: ; joseki:alsoInclude ; joseki:useContentType "application/rdf+xml" ; . # In the servlet interface HttpServletRequest.getURI() returns # a string WITHOUT the host name (its a relative URI). # so "http://server/" is replaced by "/" # This configuration system does not allow different # URIs to be support on different virtual servers (yet). a joseki:AttachedModel ; joseki:attachedModel ; joseki:hasQueryOperation joseki:BindingRDQL ; joseki:hasQueryOperation joseki:BindingGET ; joseki:hasQueryOperation joseki:BindingSPO ; joseki:hasQueryOperation joseki:BindingFetchClosure ; # Allow query over POST joseki:hasOperation joseki:BindingQueryModel ; joseki:hasOperation joseki:BindingOptions ; joseki:isImmutable "true" ; joseki:hasOperation joseki:BindingPing ; rdfs:comment "Example data" ; . # Local Variables: # tab-width: 4 # indent-tabs-mode: nil # End: