Skip to search.
jena-dev · Jena Users

Group Information

  • Members: 2056
  • Category: Software
  • Founded: Sep 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 1341 - 1370 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1341 ch_kaks Offline Send Email Jul 1, 2002
4:15 pm
Hi I sent you a question about jena on your private e-mail a fiew days ago. Apologies for this inconvenience but I had some problems with my Yahoo account. I...
1342 Nicolas Maillot
nmaillot2002 Offline Send Email
Jul 1, 2002
5:05 pm
Hi all, I've posted a message with a piece of code that was revelant of a problem with Anonymous IDs and the RDF writer (ie Some anonymous classes should not...
1343 Jeremy Carroll
jjchplb Offline Send Email
Jul 1, 2002
7:45 pm
There is no user level fix to this. A work around that will give different (but not necessarily better) behaviour is: RDFWriter writer =...
1344 Nicolas Maillot
nmaillot2002 Offline Send Email
Jul 2, 2002
8:10 am
Jeremy, The result obtained is nice, Thank you. My generated DAMLModel is saved correctly : No class is given an anonymous ID. You don't seem to like this...
1345 Jeremy Carroll
jjchplb Offline Send Email
Jul 2, 2002
8:46 am
I got the proper fix in as well now. It should show in the next release. Jeremy ... ...
1346 Nicolas Maillot
nmaillot2002 Offline Send Email
Jul 2, 2002
9:14 am
Hi all, That's me again. I got a problem with the CVS version of Jena and cannot compile it: Here is the error : Buildfile: build.xml init: pre-compile: ...
1347 Seaborne, Andy
andyseaborne Offline Send Email
Jul 2, 2002
9:19 am
Nicolas, com.hp.hpl.mesa.rdf.jena.common.prettywriter.test is new - you probably need to ensure your CVS tool is creating and checking out new directories...
1348 Nicolas Maillot
nmaillot2002 Offline Send Email
Jul 2, 2002
10:08 am
Hi, Everything is now ok with the cvs: The compilation goes right. Sorry, I didn't know cvs was working that way. Something strange is now happening : I...
1349 Jeremy Carroll
jjchplb Offline Send Email
Jul 2, 2002
10:56 am
I am not managing to reproduce this bug. Have you got icu4j.jar on your class path? (It shouldn't cause an XML error as reported but ...) Jeremy...
1350 Jeremy Carroll
jjchplb Offline Send Email
Jul 2, 2002
11:26 am
... I have modified the code to cause a linkage error to happen much earlier if icu4j is missing. Jeremy...
1351 Nicolas Maillot
nmaillot2002 Offline Send Email
Jul 2, 2002
12:45 pm
I've added the icu4j.jar to my classpath and everything is now perfect. Thank you for your efficiency. bye, Nicolas...
1352 Tim Chartrand
tim@... Send Email
Jul 3, 2002
5:30 pm
I'm trying to understand why a daml:UnambiguousProperty has to be a daml:ObjectProperty and not a daml:DatatypeProperty. I've read through the daml...
1353 Libby Miller
millibby Offline Send Email
Jul 3, 2002
6:35 pm
Hi Tim, I'm not part of the Jena team, but I've run into this division before in DAML+oil, and it seems to be an artifact of the way that DAML+oil reasoners...
1354 Jeremy Carroll
jjchplb Offline Send Email
Jul 4, 2002
8:33 am
My understanding is this restriction is to do with the requirement on DAML+OIL that it is possible to build a sound and complete reasoner. Ian Horrocks, who...
1355 Seaborne, Andy
andyseaborne Offline Send Email
Jul 4, 2002
8:44 am
Jena 1.5.0 (July 2002) Jena 1.5.0 is the beginning of a process to bring Jena into line with all the RDF core working group decisions. It also contains all...
1356 jheggland Offline Send Email Jul 4, 2002
11:04 am
... Is my MySQL database created with Jena 1.4.0 supposed to be usable by Jena 1.5.0? Because it isn't. I get this exception: RDF Error: Internal sql failure...
1357 Dave Reynolds
derihy Offline Send Email
Jul 4, 2002
2:38 pm
... Yes, that was the intention. ... Oh dear. That is not good! I'm sorry you've had this problem. I'd like to get this resolved as quickly as we can. ...
1358 Dan Brickley
danbri3 Offline Send Email
Jul 4, 2002
2:58 pm
Just stumbled across this via Google, thought Jena folks might find it interesting: http://www.cs.umbc.edu/~hchen4/hpl/ ...
1359 Dave Reynolds
derihy Offline Send Email
Jul 4, 2002
3:39 pm
Cool :-) Thanks for pointing this out. You are right there is some commonality of philosophy here. I for one wasn't aware that anyone was actually...
1360 jheggland Offline Send Email Jul 5, 2002
6:42 am
... Here it is. It may be a bit of a hack; I call create() every time, since I don't know if the database will exist. I guess it may be nicer to check this by...
1361 Dave Reynolds
derihy Offline Send Email
Jul 5, 2002
9:21 am
Hi Jon, ... Ah, yes, that's the problem. The DBConnection instance is supposed to cache information on the database layout. Your ModelRDB.create call is...
1362 jheggland Offline Send Email Jul 5, 2002
11:14 am
... I can get it to work, but now I'm confused about the semantics of ModelRDB.close(). When I call ModelRDB.listModels(dbConnection) after the code above, it...
1363 tarod@... Send Email Jul 5, 2002
3:35 pm
If I add to an empty model the sentence marc ---prop---> <a>hola</a> and then I serialize the model, I get <?xml version='1.0' encoding='ISO-8859-1'?> <rdf:RDF...
1364 Dave Reynolds
derihy Offline Send Email
Jul 5, 2002
3:40 pm
... Great! ... Humm, strange. The code I used to replicate your setup is attached (see method jhTest). As you can see I close the model after the test open and...
1365 Brian McBride
bwmb Offline Send Email
Jul 5, 2002
3:53 pm
Set the well formed flag when you create the literal. Brian...
1366 Jeremy Carroll
jjchplb Offline Send Email
Jul 5, 2002
4:08 pm
... Yes it is. [[ Model m; // Initialize m Literal xmlLit = m.createLiteral("<a>hola</a>","",true); // other code ]] Note the API is currently deficient in...
1367 Jeremy Carroll
jjchplb Offline Send Email
Jul 5, 2002
4:08 pm
The XML looks very bad! Can you let us have a look at the code that generated it. Where did all those '|' come from? Alternatively, write out the file with the...
1368 tarod@... Send Email Jul 5, 2002
4:34 pm
Thanks, to both :) Marc...
1369 jheggland Offline Send Email Jul 6, 2002
9:25 am
... This is it: void open(Connection connection) throws RDFException { dbConnection = new DBConnection(connection); try { ModelRDB.open(dbConnection).close(); ...
1370 jheggland Offline Send Email Jul 6, 2002
9:42 am
... I tried your code on my MySQL server, and it worked. Then I spotted the difference between your code and mine: You create a DBConnection with uri, user and...
Messages 1341 - 1370 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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