https://bugzilla.wikimedia.org/show_bug.cgi?id=29337
Markus Krötzsch <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Markus Krötzsch <[email protected]> 2011-06-12 10:42:39 UTC --- From SMW 1.6 on, the special support for RAP is discontinued in favor of a general RDF store support that works with all RDF stores that support SPARQL and SPARQL update. You may want to try out this new feature with the current SVN version (still slightly unstable) by adding the following to your LocalSettings: smwgDefaultStore = 'SMWSparqlStore'; $smwgSparqlDatabase = 'SMWSparqlDatabase'; $smwgSparqlQueryEndpoint = 'http://localhost:8080/sparql/'; $smwgSparqlUpdateEndpoint = 'http://localhost:8080/update/'; $smwgSparqlDataEndpoint = 'http://localhost:8080/data/'; where the last three URLs are the locations of the query, update, and POST endpoints of your RDF store. If there are problems with POST, you can also set $smwgSparqlDataEndpoint = ''; to disable its use (the all updates will happen via SPARQL Update, and the older POST protocol will not be used). There is also a special PHP binding for 4Store, in case you would like to use this: $smwgSparqlDatabase = 'SMWSparqlDatabase4Store'; Other similar special bindings for adjusting the generic support to specific stores when needed could be added. Feature requests can be posted here. Since the code that the above bug refers to has already vanished in the development version, we will not fix it anymore. However, it seems strange that a new problem should occur there given that the RAP code in SMW has been unchanged for a very long time. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
