Re: OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-14 Thread Lewis John McGibbney
Hi Dave, Coming back to this to address some thing I missed before On 2018/03/07 08:57:47, Dave Reynolds wrote: > OntModels use a somewhat older stack of tools (FileManager) which > guesses the language based on the suffix, with a default of RDF/XML, and > then

Re: OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-13 Thread Lewis John McGibbney
Thanks Andy, OK I've added this dependency to the project and te result is just the same. I am going to try Dave's suggestion. Thanks Lewis On 2018/03/13 18:51:06, Andy Seaborne <a...@apache.org> wrote: > > > On 13/03/18 18:44, Lewis John McGibbney wrote: > > Hi Andy

Re: OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-13 Thread Lewis John McGibbney
> >> RDFDataMgr which has more sophisticated conneg support, or to change > >> the default syntax to Turtle. Then install that FileManager in the > >> OntDocumentManager you use for your loading. > >> > >> Dave > >> > >> > >>

Re: OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-13 Thread Lewis John McGibbney
a via the newer RDFDataMgr which > > has more sophisticated conneg support, or to change the default syntax > > to Turtle. Then install that FileManager in the OntDocumentManager you > > use for your loading. > > > > Dave > > > > > > On 07/03/18

Re: OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-13 Thread Lewis John McGibbney
ta via the newer RDFDataMgr which > has more sophisticated conneg support, or to change the default syntax > to Turtle. Then install that FileManager in the OntDocumentManager you > use for your loading. I will try this and let you know. Thank you Lewis > > Dave > > > On 07

OntModel.read parsing non-suffixed TTL as RDF/XML

2018-03-06 Thread lewis john mcgibbney
Hi Folks, Over on the SWEET ontology suite [0] we recently changed out canonical serialization to TTL. Additionally however, we removed all file suffixes from the resources themselves, therefore although the following resource [1] is serialized as TTL, you would never know unless you looked at it

Re: Accessing Fuseki server outside local network.

2013-08-27 Thread Lewis John Mcgibbney
it on a different port using --port Andy On 27/08/13 00:15, Lewis John Mcgibbney wrote: Hi Rob, Thank you so much for this. Great. Best Lewis On Mon, Aug 26, 2013 at 3:30 PM, Rob Vesse rve...@yarcdata.com wrote: Lewis It will depend heavily on the configuration of the system that you run

Re: Accessing Fuseki server outside local network.

2013-08-26 Thread Lewis John Mcgibbney
to investigate. Hope this helps, apologies for being low on specifics but firewall configuration utilities vary widely between OS and even more so when you get to the network router/switch/hub level. Rob On 8/26/13 3:22 PM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com wrote: Hi All, Ideally

Obtaining only object's from Model

2013-08-20 Thread Lewis John Mcgibbney
Hi All, I get a results stream from Fuseki as follows SPARQL_Rresult.getModel() for clarity, then I do model.toString() the results stream looks like this ModelCom {mheq:ModelTA_Horizontal_Belt_Conveyor @rdfs:comment The ModelTA_Horizontal_Belt_Conveyor individual is a representation of the

Re: Obtaining only object's from Model

2013-08-20 Thread Lewis John Mcgibbney
Hi Joshua, Thanks for reply On Tue, Aug 20, 2013 at 6:40 PM, Joshua TAYLOR joshuaaa...@gmail.comwrote: It's sort of surprising to me that you don't seem to care about what subjects those properties and values are attached to, but at any rate, if that's really what you want to do, then

Re: Backing code for Fuseki *.html

2013-08-04 Thread Lewis John Mcgibbney
that is executing. Hope this helps, Claude On Fri, Aug 2, 2013 at 12:58 AM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com wrote: Hi Andy, On Wed, Jul 24, 2013 at 12:32 AM, Andy Seaborne a...@apache.org wrote: Also I've never worked with .tpl files before... they look similar but I am

Re: NPE when submitting query to Jena

2013-08-04 Thread Lewis John Mcgibbney
Quick follow up... I moved my code to the .tpl file, selected the dataset I wished to use... and it all works swimmingly (HA HA). Seriously though, all seems to be good and I am getting much better results. Thanks On Sun, Aug 4, 2013 at 6:25 PM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com

Re: Pinpointing Fuseki results stream in Eclipse

2013-08-04 Thread Lewis John Mcgibbney
ServletOutputStream out = action.response.getOutputStream() ; I am hoping that this out object is the one I am after. It would be nice if it was :0) Lewis On Sun, Aug 4, 2013 at 8:17 PM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com wrote: Hi, I've been jumping in and around jena-fuseki

Re: Backing code for Fuseki *.html

2013-08-02 Thread Lewis John Mcgibbney
the query with the dataset you want to query. A breakpoint in that method should get you into the code that is executing. Hope this helps, Claude On Fri, Aug 2, 2013 at 12:58 AM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com wrote: Hi Andy, On Wed, Jul 24, 2013 at 12:32 AM, Andy

NPE when submitting query to Jena

2013-08-01 Thread Lewis John Mcgibbney
Hi, For an in house RD project, I've recently been working with adding some functionality to the Fuseki UI. First I start the server law@lawx:~/Downloads/Lewis/code/essem-fuseki/target/essem-fuseki-0.2.8-SNAPSHOT$ ./fuseki-server --update --mem /susman 14:15:45 INFO Server ::

Re: Backing code for Fuseki *.html

2013-07-24 Thread Lewis John Mcgibbney
Thank you very much Andy. As always, thank you. Best Lewis On Wed, Jul 24, 2013 at 12:32 AM, Andy Seaborne a...@apache.org wrote: On 24/07/13 02:36, Lewis John Mcgibbney wrote: Hi All, I'm utilizing the Fuseki source [0] to build an application enabling access to my triples data. Can

Backing code for Fuseki *.html

2013-07-23 Thread Lewis John Mcgibbney
Hi All, I'm utilizing the Fuseki source [0] to build an application enabling access to my triples data. Can someone please explain to me how queries are sent to the server please? Looking at the source in sparql.html [1] I am struggling to see what code is called to initiative queries? Can someone

Using Fuseki API

2013-07-01 Thread Lewis John Mcgibbney
Hi, I am slightly confused as to what API I should be using to do the following. I have triples data (from an Any23 pipeline) in a Java ByteArrayOutputStream. I want to write them in to a standalone Fuseki server which is already running and we can assume will always be running in my data centre.

Locating and manipulating results (triples) stream

2013-05-20 Thread Lewis John Mcgibbney
Hi, I need to -- *Lewis*

Re: Locating and manipulating a resource (triples) stream

2013-05-20 Thread Lewis John Mcgibbney
-arq/src/main/java/com/hp/hpl/jena/ [1] http://jena.apache.org/documentation/javadoc/arq/index.html?com/hp/hpl/jena/query/ResultSetFormatter.html On Mon, May 20, 2013 at 1:11 PM, Lewis John Mcgibbney lewis.mcgibb...@gmail.com wrote: Hi All, Say I submit a DESCRIBE query (via Fuseki for instance

Getting to know my data in Fuseki

2013-03-05 Thread Lewis John Mcgibbney
Hi, Say I s-put a bunch of OWL files in to my Fuseki server in memory, all goes well. Over time, I may wish to add more, update the files... the usual SOH stuff. Is there any mechanism to actually understand how the underlying data us structured? For example within the control panel, it would be

Upgrading Jena Dependencies

2013-01-16 Thread Lewis John Mcgibbney
Hi, I've taken on a (rather dated) project which has the following jars physically stored within. -arq.jar -arq-extra.jar -iri.jar -jena.jar -virt_jena.jar -virtjdbc3.jar It should be noted that all compiled classes (inside the jar's) follow the 'com.hpl.blah.blah' package naming mechanism.

Using TDB to Compliment MarkLogic

2012-11-05 Thread Lewis John Mcgibbney
Hi All, Currently I have a stack of XML documents in MarkLogic. They get there via an XProc pipeline. I am currently working to run Apache Any23 on the XML *just* before it get inserted into MarkLogic. I would like to then send the extracted structure e.g. triples, etc to TDB and use this

Correct SPARQL query for all information for particular Individual

2012-06-26 Thread Lewis John Mcgibbney
Hi Everyone, Having produced a subset of a rather large ontology I'm now attempting to write a SPARQL query to retrieve all attributes of any given individuals if the name matches. An example of one of my NamedIndividuals is below !--