Search the web
Sign In
New User? Sign Up
jena-dev · Jena Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 29375 - 29404 of 42040   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29375
Hi, I have this code on main program Java: ... SAList = requeteSameAs(Concept1); System.out.println("SameAsList : "+SAList); for (String SAC1 : SAList) { ... }...
Kerjean Frederic
yoannker
Offline Send Email
Jun 1, 2007
7:19 am
29376
... What? `r` is a Resource. You can't cast a resource to a string. It's not a List<String> either, so you can't cast it to that. Why are you even trying? Even...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
7:21 am
29377
... Perhaps, but it's June & our crystal balls are in for their yearly service. ... This is a case where I'd suggest just printing out the date literal; a...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
7:29 am
29378
I want return a list of the result r with a static class 'public static List requeteSameAs(String subject)' ... What? `r` is a Resource. You can't cast a...
Kerjean Frederic
yoannker
Offline Send Email
Jun 1, 2007
7:37 am
29379
... So do that. List<Resource> result = new ArrayList<Resource>(); ... result.add( r ); ... return result; [Untested] -- "Answer the unanswered riddle."...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
7:56 am
29380
... Just. Print. Out. r. It's a debugging print; don't try and make it pretty in a way that discards information. If you /do/, use the prefix mappings (I'm ...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
8:02 am
29381
... A note: you've used a raw List here. Use a type-specified list, since you're using Java 5[|6]. -- A rock is not a fact. A rock is a rock. Hewlett-Packard...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
8:04 am
29382
I am new to this Ontology stuff. I have been running some benchmarking on reasoning with Pellet in Jena. What I mainly want to do is classification on some...
kevin.harmonic
Offline Send Email
Jun 1, 2007
8:13 am
29383
Yes, but on this solution: ... List<Resource> result = new ArrayList<Resource>(); ... for( ; results.hasNext() ; ) { ... QuerySolution soln =...
Kerjean Frederic
yoannker
Offline Send Email
Jun 1, 2007
8:28 am
29384
... Hewlett-Packard Limited Registered Office: Cain Road, Bracknell, Berks RG12 1HN Registered No: 690597 England ... Yes - it's a resource of the default...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 1, 2007
8:32 am
29385
Ok It's all right with this : List<String> descList=new ArrayList<String>(); ... try { ... for( ; results.hasNext() ; ) { ... QuerySolution soln =...
Kerjean Frederic
yoannker
Offline Send Email
Jun 1, 2007
8:45 am
29386
... DON'T USE TOSTRING LIKE THAT. toString() is for producing human-useful output. If it turns out to be useful for toString() of an RDFNode to put angle...
Chris Dollin
kers_ihy
Offline Send Email
Jun 1, 2007
9:12 am
29387
Hi everybody, I am using ARQ 2.0 in my project. NetBeans is my favorite IDE, and it always works great when I use Jena (verions 2.5.2) as a library. However,...
Jethro Borsje
jethro_borsje
Offline Send Email
Jun 1, 2007
10:12 am
29388
... . ... Firstly, you don't show what the data looks like: are the dates recorded as plain literals or are they typed literals? Secondly, SPARQL works in...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 1, 2007
10:33 am
29389
... You need all the jars on your classpath from the ARQ 2.0 distribution. From the information you give, it looks like jena.jar is mssing. (Caveat: I'm not a...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 1, 2007
10:55 am
29390
... I was expecting that to, but I am sure it is there (I can see this in one of the NetBeans menu's). ... I guess you use Eclipse. Or are you one of the guys...
Jethro Borsje
jethro_borsje
Offline Send Email
Jun 1, 2007
11:07 am
29391
... and ... library. ... However ... distribution. ... Eclipse! And Emacs and Cygwin. Andy...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 1, 2007
11:09 am
29392
Answering only part: OWL DL reasoners have appalling theoretical complexity (e.g. doubly exponential or similar). Linear performance is not achievable. A...
Jeremy Carroll
jjchplb
Offline Send Email
Jun 1, 2007
11:28 am
29393
Hi, I've got two ontologies, each representing the database of a project management system. To map identical concepts in the two ontologies (ontology A and B),...
christian.haugan
christian.ha...
Offline Send Email
Jun 1, 2007
11:37 am
29394
Thanks to Chris & Andy for replies! When I inserted the date, I created my statement's object using Object literalObject = new Date(); Literal rdfLiteral =...
David Donohue
schtickdisc
Offline Send Email
Jun 1, 2007
12:34 pm
29395
I am also working on visual representation of ontologies. I can show both of you my prototype at the upcoming ESWC in Innsbruck. So we can discuss about that...
Contact DaTao.net
olivier.rossel@...
Send Email
Jun 1, 2007
2:00 pm
29396
If people already arrived in innsbruck are interested in some ESWC pre-meeting (work + Guinness-eating), just say so :) We could agree on a nice place to meet...
Contact DaTao.net
olivier.rossel@...
Send Email
Jun 1, 2007
2:09 pm
29397
... Hewlett-Packard Limited Registered Office: Cain Road, Bracknell, Berks RG12 1HN Registered No: 690597 England ... ...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 1, 2007
2:40 pm
29398
Is it possible to ask a SPARQL query that combines a result from a Jena SDB triple store and an in-memory Model. Looking at the SPARQL.execQueryWorker method...
davidabigwood
Offline Send Email
Jun 1, 2007
7:43 pm
29399
Looking for Data Entry jobs? we can help you find the perfect job. Data Entry job opportunities that allow you to work offsite via computer rather than commute...
Online Jobs
mahmoud_afan...
Offline Send Email
Jun 2, 2007
12:19 am
29400
Hello all I try install Joseki 3 but have problem, this is what I done: Unzip Joseki files to C:\Joseki Put all jar files in lib in Classpath environment...
agapitolw
Offline Send Email
Jun 2, 2007
9:09 am
29401
Dear All I have built a site (using servlets and jsp, Jena 2.5.2 and Tomcat) on my own laptop. I am able to run the pages and update my ontology model (owl)...
maria.mt2006
Offline Send Email
Jun 2, 2007
9:24 am
29402
Thanks for your response Andy! I've followed your tips, however with no luck. ... I've tried to use only pm:Project, and stripping down the where-clause to...
christian.haugan
christian.ha...
Offline Send Email
Jun 2, 2007
11:20 am
29403
... Try Calendar instead of Date (been there, done that, been bitten by it :)) Dave Reynolds already answered a similar question by myself: <quoting> The basic...
Ignazio Palmisano
ignazio_io
Offline Send Email
Jun 2, 2007
1:32 pm
29404
... instances ... https://mailman.stanford.edu/pipermail/protege-owl/2006-September/000082 ... nothing) ... least ... Looks like a namespace mix up: That model...
Seaborne, Andy
andyseaborne
Offline Send Email
Jun 2, 2007
6:24 pm
Messages 29375 - 29404 of 42040   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help