Re: Using Fuseki to host IRIs / Using Fuseki as an LDP

2022-01-04 Thread Chris Wood
Hi Jakub, If you've not seen it, I think Elda ( https://www.epimorphics.com/technology/elda/) might do what you're looking for? Chris On Tue, 4 Jan 2022 at 22:16, Jakub Jałowiec wrote: > Hi, > Let's say I am hosting Apache Jena Fuseki at http//somewebsite.com and > that > I have a persistent

Re: Using Levenstein distance within SPARQL

2021-03-27 Thread Chris Wood
Hi Emri, I'd guess you've seen the function in the AnzoGraph documentation: https://docs.cambridgesemantics.com/anzograph/v2.3/userdoc/string-functions.htm? CambridgeSemantics have developed an extended set of functions beyond those in the SPARQL 1.1 specification:

Re: Jena / Fuseki distribution with SPARQLer ?

2019-01-18 Thread Chris Wood
time (for certain tests) but it should normally > build fine. Can you tell us a little about _how_ it fails? > > ajs6f > > > On Jan 18, 2019, at 1:33 PM, Chris Wood wrote: > > > > Hi Andy, > > > > Thanks for the link. > > > > I've tried a couple of thing

Re: Jena / Fuseki distribution with SPARQLer ?

2019-01-18 Thread Chris Wood
onjunction with an instance of fuseki that has a dataset loaded? On Fri, 18 Jan 2019 at 19:23, Andy Seaborne wrote: > > > On 18/01/2019 18:33, Chris Wood wrote: > > Hi Andy, > > > > Thanks for the link. > > > > I've tried a couple of things: > >- the prebuilt ex

Re: Jena / Fuseki distribution with SPARQLer ?

2019-01-18 Thread Chris Wood
main with "--sparqler LOCATION_OF_SPARQLER_PAGES" > > Andy > > On 17/01/2019 18:22, Chris Wood wrote: > > Hi, > > > > It's highly likely I've got several of my wires crossed... but I thought > I > > had a recollection that SPARQLer was distributed with Fuseki. Is t

Jena / Fuseki distribution with SPARQLer ?

2019-01-17 Thread Chris Wood
Hi, It's highly likely I've got several of my wires crossed... but I thought I had a recollection that SPARQLer was distributed with Fuseki. Is this still the case? If so, what's the local URL of the HTML SPARQL endpoint query box? And if not, where's the latest SPARQLer download?

Re: NullPointerExceptions in v3.6.0

2018-03-06 Thread Chris Wood
faultModel().createLiteral("Chris"))); but (on Windows 10, at least) I still get the error. Chris On 5 March 2018 at 16:31, Andy Seaborne <a...@apache.org> wrote: > > > On 02/03/18 18:02, Chris Wood wrote: > >> Hi Andy, >> >> I've answered one question

Re: NullPointerExceptions in v3.6.0

2018-03-02 Thread Chris Wood
ena: BUILD_DATE: 2018-02-27T22:54:52+ > ARQ:VERSION: 3.7.0-SNAPSHOT > ARQ:BUILD_DATE: 2018-02-27T22:54:52+ > RIOT: VERSION: 3.7.0-SNAPSHOT > RIOT: BUILD_DATE: 2018-02-27T22:54:52+ > TDB:VERSION: ${project.version} > TDB:BUILD_DATE: ${

Re: NullPointerExceptions in v3.6.0

2018-03-01 Thread Chris Wood
cmd.CmdMain.mainMethod(CmdMain.java:93) at jena.cmd.CmdMain.mainRun(CmdMain.java:58) at jena.cmd.CmdMain.mainRun(CmdMain.java:45) at tdb.tdbquery.main(tdbquery.java:33) On 1 March 2018 at 12:40, Chris Wood <c.c.w...@gmail.com> wrote: > Hi Andy, > > Yeh, that was o

Re: NullPointerExceptions in v3.6.0

2018-03-01 Thread Chris Wood
digging... Chris On 28 February 2018 at 18:31, Andy Seaborne <a...@apache.org> wrote: > Chris, > > It looks like details matter - could you send a complete, minimal example > (i.e. standalone and runnable)? > > Thanks > > Andy > > On 28/02/18 17:26, Chris Wood wr

Re: NullPointerExceptions in v3.6.0

2018-02-28 Thread Chris Wood
elated activity) > > Rob > > On 28/02/2018, 16:21, "Chris Wood" <c.c.w...@gmail.com> wrote: > > Hi Rob - sorry, that was an over-simplification of the psedocode; I do > call > > dataset.begin(ReadWrite.WRITE); > > after initialising it.

Re: NullPointerExceptions in v3.6.0

2018-02-28 Thread Chris Wood
ter opening a dataset probably doesn't > have any effect on already open datasets though I could be wrong on this > point > > Rob > > On 28/02/2018, 13:08, "Chris Wood" <c.c.w...@gmail.com> wrote: > > Hi Andy, > > It's probably a bit more complicate

Re: NullPointerExceptions in v3.6.0

2018-02-28 Thread Chris Wood
erence, where the base graph is backed by TDB? > > It is better to put changes to the dataset inside a transaction. Failing > that, it should be sync'ed -- TDB.sync(). > > Andy > > http://jena.staging.apache.org/documentation/txn/ > > On 27/02/18 18:33, Chris Woo

NullPointerExceptions in v3.6.0

2018-02-27 Thread Chris Wood
I've got a small application that follows the standard recommended pattern: // initialise dataset / model ... try { // ... add statements StmtIterator r = this.my_model.listStatements(); System.out.println(r.toList().size()); this.dataset.commit(); } catch