Re: Fuseki context path?

2022-02-14 Thread A. Soroka
I can if needed, but it seems like a simple thing for the standalone to do. If it can't be done now I will put in a PR. Adam On Mon, Feb 14, 2022, 4:29 PM Martynas Jusevičius wrote: > Adam, > > Why not use the WAR file then in a servlet container? > > On Mon, 14 Feb 2022 at 21.59, wrote: > >

Re: Use command tdbquery

2022-01-03 Thread A. Soroka
Is it possible for you to make a copy of the database to query offline? That can be expensive in storage, but it's really the simplest thing to do in many ways. Adam On Mon, Jan 3, 2022, 1:09 PM Andy Seaborne wrote: > > > On 03/01/2022 17:44, robert.ba...@tiscali.it wrote: > > > > > > Hi, > >

Re: Software Site for Apache Jena OSGI

2020-03-20 Thread A. Soroka
No, my link worked fine for me, for the JAR. Not sure why it wouldn't for you... Adam On Fri, Mar 20, 2020, 10:07 AM Andy Seaborne wrote: > > > On 20/03/2020 00:42, aj...@apache.org wrote: > > I'm not quite sure what you mean by "Software Site". Are you looking for > a > > place from which to

Re: Fuseki user-defined Web Services

2018-05-24 Thread Adam Soroka
Was there a PR associated with that suggestion? Adam On 2018/05/24 14:29:51, Martynas Jusevičius wrote: > I had long ago suggested that Jena should build on JAX-RS, which is the > RESTful API for Java. > > You can see how that can be done here: >

Re: SPIN support

2017-09-08 Thread Adam Soroka
Could this be a thing for support in Fuseki? IOW, we don't want to package every possible scripting language with Fuseki, but people will want to use this kind of facility with it, so we might want to have some instructions available as to how to add your JSR 223 lang of choice. ajs6f On

Re: where is/are the extension points for Jena ARQ to fit stream based framework

2017-08-07 Thread Adam Soroka
You may want to look at the work here: https://www.w3.org/community/rsp/wiki/Main_Page because one of the points they make is that queries over streams are fundamentally different then queries over complete datasets. (Also this might fit better on Jena's dev@ list.) ajs6f On 2017-08-07

Re: riot not triggering ERROR on bad IRI

2017-04-18 Thread A. Soroka
Did you use the --strict flag? --- A. Soroka The University of Virginia Library > On Apr 18, 2017, at 8:09 AM, Laura Morales <laure...@mail.com> wrote: > > This is the RDF/XML: > https://svn.apache.org/repos/asf/hivemind/hivemind2/trunk/doap_Hivemind.rdf > > The comman

Re: tdbloader skip bad file

2017-04-18 Thread A. Soroka
One of the several advantages of N-Triples (and this is not an accident) is how easy it is to use standard Posix tools with it, e.g. cut, sed, grep, etc. --- A. Soroka The University of Virginia Library > On Apr 18, 2017, at 11:46 AM, Laura Morales <laure...@mail.com&

Re: tdbloader skip bad file

2017-04-18 Thread A. Soroka
In the meantime, you can use something like sed for this, something like: sed -e "s|\(.*\)|\1 |" --- A. Soroka The University of Virginia Library > On Apr 18, 2017, at 10:28 AM, Laura Morales <laure...@mail.com> wrote: > >> Convert to something cheaper (preferably

Re: tdbloader skip bad file

2017-04-18 Thread A. Soroka
You can file a ticket for that functionality at the Jena JIRA instance: https://issues.apache.org/jira/browse/JENA --- A. Soroka The University of Virginia Library > On Apr 18, 2017, at 10:28 AM, Laura Morales <laure...@mail.com> wrote: > >> Convert to something cheaper (pref

Re: tdbloader skip bad file

2017-04-18 Thread A. Soroka
will depend on the size of your files. In this case it seems unlikely to help much, but it may be useful at a different time. You can only load one file at a time into TDB with tdbloader, because only one process at a time can act against a given TDB database. --- A. Soroka The University of Virginia

Re: Delete/Insert single graph in dataset

2017-04-16 Thread A. Soroka
is supporting a Fuseki instance, you can use the Graph Store protocol: https://www.w3.org/TR/sparql11-http-rdf-update and Fuseki includes convenient command-line scripts: https://jena.apache.org/documentation/fuseki2/soh.html in this case, s-delete. --- A. Soroka The University of Virginia

Re: Query performance over 1 dataset, many graphs

2017-04-16 Thread A. Soroka
Jena) dataset implementation, it will depend on the specifics. --- A. Soroka The University of Virginia Library > On Apr 16, 2017, at 9:45 AM, Laura Morales <laure...@mail.com> wrote: > > If I query my dataset as "SELECT * FROM ...", is there a > performance hi

Re: Very slow tdbloader2 insertion

2017-04-15 Thread A. Soroka
to start from scratch. Andy, of course, can say more. --- A. Soroka The University of Virginia Library > On Apr 15, 2017, at 2:58 PM, Laura Morales <laure...@mail.com> wrote: > >> Use tdbloader for 10M quads. > > I wonder how is tdbloader technically different from tdbloader2.

Re: SELECTing s properties in the same query

2017-04-15 Thread A. Soroka
hat to get the closure. For most people, one "hop" is likely enough. --- A. Soroka The University of Virginia Library [1] https://jena.apache.org/documentation/query/extension.html#describe-handlers > On Apr 15, 2017, at 5:58 AM, james anderson <ja...@dydra.com> wrote: > >

Re: Predicates with no vocabulary

2017-04-12 Thread A. Soroka
Perhaps what might be helpful is making up your own _namespace_. Call it "http://lauramorales.com/data/; (or use some domain you own). Then you can mint predicates as easily as: http://lauramorales.com/data/myFirstPredicate http://lauramorales.com/data/theNextPredicate etc. --- A. S

Re: ArrayIndexOutOfBounds exception on un-synchronized model modifications?

2017-04-11 Thread A. Soroka
Yes, you will want to exercise some control over concurrency here: https://jena.apache.org/documentation/notes/concurrency-howto.html --- A. Soroka The University of Virginia Library > On Apr 11, 2017, at 1:16 PM, Joshua TAYLOR <joshuaaa...@gmail.com> wrote: > > I expect t

Re: Jena native store indexes

2017-04-11 Thread A. Soroka
xtensions_ to SPARQL provided by Jena that can make use of additional indexes: https://jena.apache.org/documentation/query/text-query.html and https://jena.apache.org/documentation/query/spatial-query.html --- A. Soroka The University of Virginia Library > On Apr 11, 2017, at 1:30 PM, Laura M

Re: Graphs multiple labels

2017-04-10 Thread A. Soroka
to using someone else's vocabulary, and that overhead is worth paying exactly to the extent that you need to share your assertions with other people. --- A. Soroka The University of Virginia Library > On Apr 10, 2017, at 7:12 AM, Laura Morales <laure...@mail.com> wrote: > >> You impo

Re: Jena command-line tools documentation

2017-04-08 Thread A. Soroka
The CLI tool documentation is a bit scattered. Here are some useful pages: https://jena.apache.org/documentation/query/cmds.html https://jena.apache.org/documentation/tdb/commands.html --- A. Soroka The University of Virginia Library > On Apr 8, 2017, at 6:22 PM, Laura Morales <

Re: DOAP retrieve license info

2017-04-07 Thread A. Soroka
mmon. This "find an URI in a graph, follow it, find another graph with more information" is the essential mechanism of linked data done with RDF. --- A. Soroka The University of Virginia Library > On Apr 7, 2017, at 5:33 AM, Laura Morales <laure...@mail.com> wrote: > > I'm

Re: /data endpoint

2017-04-06 Thread A. Soroka
The number and names of such endpoints are configurable in Fuseki's flexible RDF configuration language: https://jena.apache.org/documentation/fuseki2/fuseki-configuration.html#defining-the-service-name-and-endpoints-available --- A. Soroka The University of Virginia Library > On Apr 6, 2

Re: Named graphs

2017-04-06 Thread A. Soroka
l Tuohy wrote, in the way you might use SPARQL Graph Store, but it's actually a bit subtle: https://www.w3.org/TR/sparql11-http-rdf-update/#direct-graph-identification --- A. Soroka The University of Virginia Library > On Apr 6, 2017, at 4:20 AM, Laura Morales <laure...@mail.com> wrote

Re: TDH disk toll

2017-04-06 Thread A. Soroka
Nothing that you wouldn't look at for any other server application. The size of the dataset may not make as big a difference as the character of your queries (how much scanning are they doing, are you using expansive property paths, that sort of thing). --- A. Soroka The University

Re: tdbloader vs tdbloader2

2017-04-05 Thread A. Soroka
https://jena.apache.org/documentation/tdb/commands.html#tdbloader2 clarifies the differences pretty thoroughly. What is confusing about them? --- A. Soroka The University of Virginia Library > On Apr 5, 2017, at 11:47 AM, Laura Morales <laure...@mail.com> wrote: > > What's

Re: DOAP

2017-04-04 Thread A. Soroka
Some (I think most) projects maintain their own DOAP, and it can be found in a different location of a project website per-project. --- A. Soroka The University of Virginia Library > On Apr 4, 2017, at 1:43 PM, Laura Morales <laure...@mail.com> wrote: > >> https://jena.apa

Re: Why we need Fuseki

2017-04-04 Thread A. Soroka
let's talk about how to do that. If you just want someone else to implement it for you, it is not the job of anyone on this list to do so, so we can end this conversation. --- A. Soroka The University of Virginia Library

Re: Why we need Fuseki

2017-04-04 Thread A. Soroka
rse. Is there now such a A REFERENCE PUBLIC ENDPOINT running by Jena > Team? If you think, this is not necessary, then ok... I'm sorry, I am a bit confused; are you able to volunteer some time or resources to this purpose? What you would like the Jena team to do to help _you_ implement this idea? --- A. Soroka The University of Virginia Library

Re: Why we need Fuseki

2017-04-04 Thread A. Soroka
this data from? Do you have perhaps employer backing or other long-term backing for this? --- A. Soroka The University of Virginia Library > On Apr 4, 2017, at 9:34 AM, baran...@gmail.com wrote: > > >> This sounds like an interesting idea. Do you have some time to devote to it? &

Re: Why we need Fuseki

2017-04-04 Thread A. Soroka
>> If Fuseki would have had (like Virtuoso) a reference public endpoint with a >> well known database, then were no need for such a question... This sounds like an interesting idea. Do you have some time to devote to it? What database are you thinking of serving? --- A. Soroka Th

Re: Ontology Imports

2017-04-02 Thread A. Soroka
I cannot find a method read(InputStream stream, String Lang) on Model (from which OntModel inherits its "read" methods). Are you by chance using read(InputStream in, String base), which is a very different semantic? --- A. Soroka The University of Virginia Library > On Mar 31, 201

Re: persistent inference on named graphs in Fuseki

2017-04-02 Thread A. Soroka
Datasets are covered very nicely in the RDF core recommendations: https://www.w3.org/TR/rdf11-concepts/#section-dataset --- A. Soroka The University of Virginia Library > On Apr 2, 2017, at 5:38 AM, Dave Reynolds <dave.e.reyno...@gmail.com> wrote: > > On 02/04/17 10:25, Laur

Re: Documentation of Fuseki HTTP Admin Protocol

2017-03-28 Thread A. Soroka
of servers. But that depends on the interpretation of trailing slash as collection, which is hardly universal. --- A. Soroka The University of Virginia Library > On Mar 28, 2017, at 6:25 AM, Bruno P. Kinoshita > <brunodepau...@yahoo.com.br.INVALID> wrote: > > Ack. Turned off t

Re: Jena scalability

2017-03-26 Thread A. Soroka
TDB is a native store, with a next generation version in development [1]. SDB uses a SQL backend. It is not under active development. Claude Warren (one of the Jena committers) has been working on an Apache Cassandra backend, and he can say more about it if it seems relevant. --- A. Soroka

Re: How to select an entity which has a property with a certain value?

2017-03-26 Thread A. Soroka
Please show us sample data and the means by which you are executing the query. https://stackoverflow.com/help/mcve --- A. Soroka The University of Virginia Library > On Mar 26, 2017, at 9:52 AM, Dmitri Pisarenko <d...@altruix.co> wrote: > > Hello! > > FYI: Modifying the

Re: Limited HTTP API

2017-03-26 Thread A. Soroka
into the dataset/graph/triple framework over which jena-permissions works. --- A. Soroka The University of Virginia Library > On Mar 26, 2017, at 9:58 AM, A. Soroka <aj...@email.virginia.edu> wrote: > > You have Apache Shiro available for coarse authorization action on

Re: Limited HTTP API

2017-03-26 Thread A. Soroka
You have Apache Shiro available for coarse authorization action on the endpoint, but that will not do much for you if you need to act differently according to the parsed query. Claude, could jena-permissions be used here for some cases? --- A. Soroka The University of Virginia Library

Re: Understanding DatasetGraph getLock() (DatasetGraphInMem throwing a curve ball)...

2017-03-24 Thread A. Soroka
que that I am missing. --- A. Soroka The University of Virginia Library > On Mar 24, 2017, at 6:51 AM, Dick Murray <dandh...@gmail.com> wrote: > > Hi. > > Is there a way to get what Transactional a DatasetGraph is using and > specifically what Lock semantics are in fo

Re: [MASSMAIL]Re: about TDB JENA

2017-03-20 Thread A. Soroka
RQL property paths to solve subsumption problems. You may not be able to throw all of your data and problems into a single "inference machine", but you may very well be able to solve most or all of your problems using different techniques. --- A. Soroka The University of Virginia L

Re: Wikidata vs DBpedia

2017-03-19 Thread A. Soroka
This would be a much better question for either the Wikidata mailing list [1] or the DBpedia support system [2]. --- A. Soroka The University of Virginia Library [1] https://lists.wikimedia.org/mailman/listinfo/wikidata [2] http://wiki.dbpedia.org/support > On Mar 19, 2017, at 11:36 AM, ku

Re: [MASSMAIL]Re: about TDB JENA

2017-03-19 Thread A. Soroka
Just a side note; Jena offers SPARQL 1.1, which includes property paths [1]. In some situations, they can be used to do some forms of inference (e.g. some kinds of problems involving subsumption) right in your SPARQL queries. --- A. Soroka The University of Virginia Library [1] https://www.w3

Re: Missing file in the jena RDF API documentation

2017-03-12 Thread A. Soroka
As I said in my first reply, there is a file of that name at: https://jena.apache.org/tutorials/sparql_data/vc-db-1.rdf The site is normally updated at least for every release. --- A. Soroka The University of Virginia Library > On Mar 12, 2017, at 4:22 PM, Aya Hamdy <aya.bad...@gma

Re: Missing file in the jena RDF API documentation

2017-03-12 Thread A. Soroka
I added a link to that page. When the site is next published, you should see it update. --- A. Soroka The University of Virginia Library > On Mar 12, 2017, at 3:39 PM, Aya Hamdy <aya.bad...@gmail.com> wrote: > > Reading RDF is section 4, but I am referring to *Tutorial 5*,

Re: Missing file in the jena RDF API documentation

2017-03-12 Thread A. Soroka
eading RDF" as you report. Are you looking at some kind of cached off-line version of the site? --- A. Soroka The University of Virginia Library > On Mar 12, 2017, at 2:51 PM, Aya Hamdy <aya.bad...@gmail.com> wrote: > > I used "Improve this Page" and commented at

Re: Missing file in the jena RDF API documentation

2017-03-12 Thread A. Soroka
prove this Page" to send a patch request. --- A. Soroka The University of Virginia Library > On Mar 12, 2017, at 2:06 PM, Aya Hamdy <aya.bad...@gmail.com> wrote: > > Hello, > > I have been exploring the Jena RDF API documentation found at the > following URL:

Re: Inference not working

2017-03-10 Thread A. Soroka
ilments as more triples in a persistent > model. This is highly application dependent. Just as a side-note here, SPARQL property paths are really useful for this kind of "targeted inference". You can duplicate a lot of subsumption rules and the like with property paths. --- A. Soroka The University of Virginia Library

Re: Fuseki proxy settings for federated queries

2017-03-10 Thread A. Soroka
I've got a PR with what I hope is a fix linked at that ticket. Is it possible for you to confirm whether or not it does in fact fix your problem? --- A. Soroka The University of Virginia Library > On Mar 9, 2017, at 8:32 AM, Dominique Vandensteen <domi@cogni.zone> wrote: > >

Re: Fuseki proxy settings for federated queries

2017-03-09 Thread A. Soroka
. --- A. Soroka The University of Virginia Library > On Mar 9, 2017, at 6:12 AM, Dominique Vandensteen <domi@cogni.zone> wrote: > > Hi, > While trying to run a sparql with "service" I'm getting timeout errors. It > seems fuseki is not picking up the default java proxy

Re: Converting a class into an individual or an individual into a class

2017-03-07 Thread A. Soroka
tions in general…" --- A. Soroka The University of Virginia Library > On Mar 6, 2017, at 3:29 PM, Hlel Emna <emnah...@gmail.com> wrote: > > hi > to understand Reification, see this reference: > https://www.w3.org/TR/swbp-n-aryRelations/

Re: Converting a class into an individual or an individual into a class

2017-03-06 Thread A. Soroka
That is not a Jena class. That is a class from a TopBraid product. It seems that the reification to which it refers is not the OWL "punning" about which I think you were asking but RDF reification: https://jena.apache.org/documentation/notes/reification.html --- A. Soroka The

Re: Fuseki support other query languages

2017-03-05 Thread A. Soroka
PI for one product's particular capability. You can refer to any number of good tutorials for how to write normal SPARQL. Jena itself maintains one: https://jena.apache.org/tutorials/sparql.html --- A. Soroka The University of Virginia Library > On Mar 5, 2017, at 11:37 AM, Laura Morales <l

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
queries and updates to ARQ. It is ARQ that talks to TDB. --- A. Soroka The University of Virginia Library > On Mar 4, 2017, at 10:10 AM, Laura Morales <laure...@mail.com> wrote: > > OK if I get this right, TDB is the actual database storing all > triples/n-quads, and Fuseki

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
Fuseki is not a database. It is a SPARQL server. Jena TDB is the usual database used with Fuseki. Using Fuseki without Jena is nonsensical. Fuseki is totally based on Jena. https://jena.apache.org/documentation/index.html --- A. Soroka The University of Virginia Library > On Mar 4, 2017, a

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
hrough which to investigate these tools. Asking about the generic use of a tool is often less helpful than planning to accomplish a concrete end and trying that tool in that context. --- A. Soroka The University of Virginia Library > On Mar 4, 2017, at 8:49 AM, Laura Morales <laure.

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
Yes, and I'm increasingly convinced (pretty totally convinced at this point) that an LDP piece for Fuseki would be a bad idea. I'm not going to pursue it. --- A. Soroka The University of Virginia Library > On Mar 4, 2017, at 8:49 AM, Andy Seaborne <a...@apache.org> wrote: > > On

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
There are plenty of graph databases that provide the other languages you mentioned. Is there some reason why you want to use Jena? Perhaps, as John Fereira asked, you will describe your use case. --- A. Soroka The University of Virginia Library > On Mar 4, 2017, at 8:44 AM, Laura Mora

Re: Fuseki vs Marmotta

2017-03-04 Thread A. Soroka
> The big thing that LDP adds is its container model. > >Andy Yes. This is hugely useful, if it meets your use cases. It allows for a lot of automatic management for an important class of relationships. https://www.w3.org/TR/ldp/#ldpc --- A. Soroka The University of Virgini

Re: Fuseki support other query languages

2017-03-04 Thread A. Soroka
Certainly it would be _possible_ to write an extension for Fuseki that would do such a thing. It is not in any obvious way part of the current remit for the Jena project. Are you interested in undertaking that work? --- A. Soroka The University of Virginia Library > On Mar 4, 2017, at 7:40

Re: Fuseki / ARQ DESCRIBE query to include ?s ?p

2017-03-03 Thread A. Soroka
from Pubby, it gives them the results of a DESCRIBE query on that resource. --- A. Soroka The University of Virginia Library [1] > On Mar 3, 2017, at 9:37 AM, Martynas Jusevičius <marty...@graphity.org> wrote: > > Isn't Fuseki already doing the same as Pubby? > > On Fri, Mar 3, 20

Re: Fuseki / ARQ DESCRIBE query to include ?s ?p

2017-03-03 Thread A. Soroka
I'm not sure what you mean by such triples as "(?s ?p and probably (?s ?o). " Can you give some concrete examples? --- A. Soroka The University of Virginia Library > On Mar 3, 2017, at 5:13 AM, Beetz, J. <j.be...@tue.nl> wrote: > > Dear community, > > I have

Re: Extending Jena Text to Support ElasticSearch as Indexing/Querying Engine

2017-03-02 Thread A. Soroka
of time. --- A. Soroka The University of Virginia Library > On Mar 1, 2017, at 1:27 PM, Osma Suominen <osma.suomi...@helsinki.fi> wrote: > > Hi Anuj! > > I have nothing against modularity in general. However, I cannot see how your > proposal could work in practice f

Re: Wiki data

2017-03-02 Thread A. Soroka
That's a good question to ask the Protege support lists. --- A. Soroka The University of Virginia Library > On Mar 2, 2017, at 3:31 PM, javed khan <javedbtk...@gmail.com> wrote: > > Can we add wikidata in Protege like we do in DBpedia. Not sure if Protege > and Jena al

Re: Extending Jena Text to Support ElasticSearch as Indexing/Querying Engine

2017-03-01 Thread A. Soroka
> On Feb 28, 2017, at 11:23 AM, Osma Suominen <osma.suomi...@helsinki.fi> wrote: > 28.02.2017, 17:12, A. Soroka kirjoitti: >> https://lists.apache.org/thread.html/dce0d502b11891c28e57bbcbb0cdef27d8374d58d9634076b8ef4cd7@1431107516@%3Cdev.jena.apache.org%3E >> ? In other w

Re: Extending Jena Text to Support ElasticSearch as Indexing/Querying Engine

2017-03-01 Thread A. Soroka
e. We have to do that for Guava for now because of HADOOP-10101 (grumble grumble) but it's hardly a thing we want to do any more of than needed, I don't think. --- A. Soroka The University of Virginia Library [1] http://openjdk.java.net/projects/jigsaw/ > On Mar 1, 2017, at 9:03 AM, Osma

Re: Deleting the default graph from the TDB

2017-02-28 Thread A. Soroka
Do you have the default graph set up as the union graph? --- A. Soroka The University of Virginia Library > On Feb 28, 2017, at 12:21 PM, Sandor Kopacsi <sandor.kopa...@univie.ac.at> > wrote: > > Dear List-members! > > I would like to delete the default graph from TDB

Re: Extending Jena Text to Support ElasticSearch as Indexing/Querying Engine

2017-02-28 Thread A. Soroka
to upgrade the Lucene version? I don't use the Solr component now, but I could easily see so doing... that's pretty vague, I know, and I'm not in a position to do any work to maintain it, so consider that just a very small and blurry data point. :) --- A. Soroka The University of Virginia Library

Re: SPARQL Update over model

2017-02-16 Thread A. Soroka
Try starting with: https://jena.apache.org/documentation/javadoc/arq/org/apache/jena/query/DatasetFactory.html (I probably should have said that to begin with.) --- A. Soroka The University of Virginia Library > On Feb 16, 2017, at 11:11 AM, Julien Plu > <julien@redaction-devel

Re: SPARQL Update over model

2017-02-16 Thread A. Soroka
A model holds exactly one graph. Perhaps you want to be using a dataset [1]? --- A. Soroka The University of Virginia Library [1] https://www.w3.org/TR/rdf11-concepts/#section-dataset > On Feb 16, 2017, at 10:59 AM, Julien Plu > <julien@redaction-developpez.com> wrote: > &g

Re: Remove class

2017-02-15 Thread A. Soroka
Please suggest to your teacher that when he or she gives such an assignment (to use Jena rules) it would be useful and helpful to contact this list first. There are many people here who would be happy to help advise your teacher and make the assignment as good as it can be. --- A. Soroka

Re: Remove class

2017-02-15 Thread A. Soroka
Can you tell us something about this project? Is this a school assignment? --- A. Soroka The University of Virginia Library > On Feb 15, 2017, at 8:54 AM, tina sani <tinamadri...@gmail.com> wrote: > > Lorenz, using rules in my project is mandatory part so need to stick with &g

Re: Pull NamedModel from a Dataset didn't work since jena 3.1.1

2017-02-14 Thread A. Soroka
Thanks, I've made that change. Keep in mind that if you see an error on a doc page, you can always use the "Improve this Page" link at the top of the page to send a patch. --- A. Soroka The University of Virginia Library > On Feb 14, 2017, at 11:21 AM, marschelin...

Re: Pull NamedModel from a Dataset didn't work since jena 3.1.1

2017-02-14 Thread A. Soroka
That link works fine for me and leads to appropriate documentation. Perhaps you can explain what you mean by "it is not a correct linking"? --- A. Soroka The University of Virginia Library > On Feb 14, 2017, at 3:56 AM, marschelin...@web.de wrote: > > For your info

Re: [ANN] Apache Jena 3.2.0 released with Fuseki 2.5.0

2017-02-13 Thread A. Soroka
It is compatible for TDB; release notes would normally include information otherwise were that the case. I'm not aware of any particularly sharp changes in the API for 3.2.0. Some very old material has been deprecated (e.g. see JENA-1270). --- A. Soroka The University of Virginia Library

[ANN] Apache Jena 3.2.0 released with Fuseki 2.5.0

2017-02-10 Thread A. Soroka
We are pleased to announce the release of Jena 3.2.0 (including Fuseki 2 2.5.0)! == Notable in this release: * New facility for managing RDF Connections (JENA-1267) * Quad/Triple/Node now Serializable (JENA-1233) * @context overrides available for JsonLDReader (JENA-1279) * jena-spatial

Re: Release vote : 3.2.0

2017-02-02 Thread A. Soroka
I think Andy has the right story here (I must have copied it from someone using Linux). In fact, I did the release candidate on a Mac, a fact which will be reflected in my forthcoming vote. --- A. Soroka The University of Virginia Library > On Feb 2, 2017, at 5:40 AM, Andy Seabo

Re: Release vote : 3.2.0

2017-02-01 Thread A. Soroka
I'mean running Jena 3.2 snapshot on Ubuntu 16.04 and > Centos 7. > > If you haven't broken anything in the snapshot then I vote release. ;-) > > On 1 Feb 2017 16:09, "A. Soroka" <aj...@virginia.edu> wrote: > >> Hello, Jena-folks! >> >>

Release vote : 3.2.0

2017-02-01 Thread A. Soroka
kind! ajs6f (A. Soroka) Checking needed: • Does everything work on MS Windows? • Does everything work on OS X? • Is the GPG signature okay? • Is there a source archive? • Can the source archive really be built? • Is there a correct LICENSE and NOTICE file in each artifact (both source

Re: 10G loading file to fuseki

2017-01-19 Thread A. Soroka
Your procedure seems reasonable. I still don't understand what you mean by "I can query the small Lexo database but not the LinkedCT one." What exactly are you doing to send queries? Please show the configuration you added for your new dataset. --- A. Soroka The University of Virgin

Re: 10G loading file to fuseki

2017-01-19 Thread A. Soroka
hat you actually got? --- A. Soroka The University of Virginia Library > On Jan 19, 2017, at 12:03 PM, Reihaneh Amini <amini.reiha...@gmail.com> wrote: > > I load the data by TDB loader and then upload them into the server with no > problem this time. However, the reasoner pr

Re: 10G loading file to fuseki

2017-01-19 Thread A. Soroka
Using the UI is not a good idea for this. You would do _much_ better either to work Osma's suggestion or to use the command-line tools. --- A. Soroka The University of Virginia Library > On Jan 19, 2017, at 11:32 AM, Reihaneh Amini <amini.reiha...@gmail.com> wrote: > > Hi An

Re: 10g data loading in Fuseki

2017-01-18 Thread A. Soroka
will get proper data statistics automatically by the means he suggests. --- A. Soroka The University of Virginia Library > On Jan 18, 2017, at 10:50 AM, Osma Suominen <osma.suomi...@helsinki.fi> wrote: > > Hi Reihan, > > You cannot upload files this big via Fuseki. Try td

Re: Line Numbers

2017-01-17 Thread A. Soroka
t metadata and record it elsewhere or record it in RDF in various ways. Perhaps you can tell us a little more about your use case and we can help you find a more targeted technique for it. --- A. Soroka The University of Virginia Library > On Jan 17, 2017, at 3:14 PM, Grahame Gr

Re: Line Numbers

2017-01-17 Thread A. Soroka
, I believe you can take a look at LangTurtleBase to see what might be done. Keep in mind that there's not necessarily a precise way to understand what line produces an error-- it might occur in the interaction between tokens on more than one line. --- A. Soroka The University of Virginia Library

Re: Line Numbers

2017-01-17 Thread A. Soroka
). If that is not what you are asking for, perhaps you can clarify. --- A. Soroka The University of Virginia Library > On Jan 17, 2017, at 2:52 PM, Grahame Grieve > <grah...@healthintersections.com.au> wrote: > > I'm not sure where that means it's not possible or of

Re: Line Numbers

2017-01-17 Thread A. Soroka
) In some other cases, it seems like it should be possible. Do you have a specific language in mind? --- A. Soroka The University of Virginia Library > On Jan 16, 2017, at 6:48 AM, Grahame Grieve > <grah...@healthintersections.com.au> wrote: > > Can the Jena parser maintain a link b

Re: Literal string to appropriate object

2017-01-11 Thread A. Soroka
You do know the type: http://www.w3.org/2001/XMSchema#anyURI It is clearly written in your example. --- A. Soroka The University of Virginia Library > On Jan 11, 2017, at 10:25 AM, George News <george.n...@gmx.net> wrote: > > On 11/01/2017 15:59, A. Soroka wrote: >> Perha

Re: Literal string to appropriate object

2017-01-11 Thread A. Soroka
Perhaps parse it as a Jena Literal (e.g. using ResourceFactory.createTypedLiteral() ), then use Literal.getString() to get the value you seek. --- A. Soroka The University of Virginia Library > On Jan 11, 2017, at 9:55 AM, George News <george.n...@gmx.net> wrote: > >

Re: Jena TDB indexing and stats building

2017-01-09 Thread A. Soroka
/documentation/tdb/commands.html#tdbloader --- A. Soroka The University of Virginia Library > On Jan 9, 2017, at 2:36 PM, Ganesh Selvaraj <gsel...@aucklanduni.ac.nz> wrote: > > Hi All, > > I am using Jena TDB for my work. So far I could not find much documentation > on data

Re: Fuseki - how to release memory

2017-01-06 Thread A. Soroka
Can you give us your actual Fuseki config (i.e. assembler file)? Or are you repeatedly creating new datasets via the admin API? --- A. Soroka The University of Virginia Library > On Jan 6, 2017, at 10:43 AM, Janda, Radim <radim.ja...@reporters.cz> wrote: > > Hello, > we use

Re: Compile Forked Version

2017-01-05 Thread A. Soroka
at this point, or perhaps the issue: https://issues.apache.org/jira/browse/JENA-1250 --- A. Soroka The University of Virginia Library > On Jan 5, 2017, at 10:26 AM, Samur Araujo <s.ara...@geophy.com> wrote: > > I follow your suggestion: > >

Re: Compile Forked Version

2017-01-05 Thread A. Soroka
If you have cloned that fork, try just doing a simple `mvn clean install` in the project root, then look in jena-fuseki2/apache-jena-fuseki/target. You should find a Fuseki distribution there with the forked code. --- A. Soroka The University of Virginia Library > On Jan 5, 2017, at 10:13

Re: Compile Forked Version

2017-01-05 Thread A. Soroka
you trying to compile a mix of modules? Are you trying to maintain both ordinary and forked forms of Jena in your local Maven repo? What do you intend to do with the forked artifacts? Are you going to integrate them into some other application? There may be an easier way to do all this. ---

Re: ClosedException on calling Individual.isClass()

2017-01-02 Thread A. Soroka
aset: https://jena.apache.org/documentation/rdf/datasets.html or if they are not part of a dataset, even just an in-memory Model. --- A. Soroka The University of Virginia Library > On Jan 2, 2017, at 7:37 AM, George News <george.n...@gmx.net> wrote: > > > On 02/01/2017 13:00, D

Re: Custom SERVICE HTTP requests

2017-01-01 Thread A. Soroka
/QueryEngineHTTP.java#L613 It may or may not be a useful pattern for you, but if your desired customization can be packaged in an HTTP client, you _can_ inject HTTP clients on a per-service basis. --- A. Soroka The University of Virginia Library > On Jan 1, 2017, at 12:59 PM, Andy Seaborne <a...@apache.org&

Re: listresourceswithproperty()

2016-12-29 Thread A. Soroka
give are sensible code. The literal "Student" is not a reasonable value for an rdf:type. Please go and actually try to write some code for your problem and then continue this discussion. --- A. Soroka The University of Virginia Library > On Dec 29, 2016, at 9:16 AM, neha gup

Re: listresourceswithproperty()

2016-12-29 Thread A. Soroka
No. The "resources in this model that have property p": the resource that has a property is the subject of that property. --- A. Soroka The University of Virginia Library > On Dec 29, 2016, at 8:57 AM, neha gupta <neha.bang...@gmail.com> wrote: > > Hi Soroka, it wil

Re: listresourceswithproperty()

2016-12-29 Thread A. Soroka
emove() is not implemented on this iterator." --- A. Soroka The University of Virginia Library > On Dec 29, 2016, at 8:23 AM, neha gupta <neha.bang...@gmail.com> wrote: > > Hello, I want to ask what is the function of this method: > listresourceswithproperty() > > And is i

Re: adjunction of new Balise

2016-12-24 Thread A. Soroka
) In what way is this question substantially different than the one you recently asked (to which you received some very useful answers)? [2] --- A. Soroka The University of Virginia Library [1] http://www.w3.org/Consortium/Process/ [2] https://lists.apache.org/thread.html

Re: Very slow Geosparql with Jena

2016-12-23 Thread A. Soroka
If the results from TDB and from Lucene have to be joined, that can cause some overhead, but I am not familiar enough with that tooling to see from your query whether that is a potential issue. --- A. Soroka The University of Virginia Library > On Dec 23, 2016, at 11:48 AM, Samur Araujo <

Re: Jena with Lucene 5 or 6

2016-12-23 Thread A. Soroka
Work is ongoing on that front: https://issues.apache.org/jira/browse/JENA-1250 but I will leave it to Osma, who has been closely involved, to comment as to its likely future. --- A. Soroka The University of Virginia Library > On Dec 23, 2016, at 10:35 AM, Samur Araujo <s.ara...@geop

  1   2   3   >