Ignore:
Timestamp:
2013-10-14T15:41:04+13:00 (11 years ago)
Author:
davidb
Message:

Further development of the files that need to be installed to run as a Greenstone extension

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/apache-jena/trunk/src/NOTES.txt

    r28407 r28418  
    11
     2****
     3* Apache Jena Fuseki Server
     4****
    25
     6To use this extension, the tripple-store server it provide, Fuseki,
     7needs to be run alongside the regular Greenstone DL server
    38
    4 This extension requires an additional server to be run, along side the main Greenstone3 server
     9To start the server, type:
    510
     11  fuseki-server --update -loc=$GEXT_JENA_INSTALLED/DB /ds
    612
    7 ....
     13********
    814
     15++++
     16+ Additional notes:
     17++++
     18
     19For testing purposes, the client-side provided by Fuseki have also been
     20installed.
     21
     22To add content (into the default graph) to the tripple-store:
     23
     24  s-put http://localhost:3030/ds/data default books.ttl
     25
     26To get it back:
     27
     28  s-get http://localhost:3030/ds/data default
     29
     30To query it with SPARQL using the .../query endpoint:
     31
     32  s-query --service http://localhost:3030/ds/query 'SELECT * {?s ?p ?o}'
     33
     34To update it with SPARQL using the .../update endpoint:
     35
     36  s-update --service http://localhost:3030/ds/update 'CLEAR DEFAULT'
     37
     38****
Note: See TracChangeset for help on using the changeset viewer.