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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 2305 - 2334 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2305 frozados@...
durodematar3 Offline Send Email
Mar 3, 2003
12:15 pm
Hello. I download BerkeleyDB.zip file from www.sleepycat.com and i don't know where i can put rdf files to access them and do a RDQL query?. I want to know if...
2306 Dave Reynolds
derihy Offline Send Email
Mar 3, 2003
4:30 pm
In Jena you create instances of Model to hold your RDF data. There are Model implementations that work in memory, that use BerkeleyDB and that use relational ...
2307 Danny Ayers
danny_ayers Offline Send Email
Mar 3, 2003
4:39 pm
... There's documentation in the javadoc for com.hp.hpl.mesa.rdf.jena.bdb about using BDB. Queries are applied to a Model, pretty much irrespective of what ...
2308 jbategroups Offline Send Email Mar 5, 2003
5:23 am
The Jena docs do not state what any versioning requirements are for external libs such as Xerces (used by ARP). Jena 1, uses Xerces 1.*; will Jena 2 use Xerces...
2309 Dave Reynolds
derihy Offline Send Email
Mar 5, 2003
1:21 pm
... True. The Jena zip includes a copy of the particular version of each of the libs which which it is known to work. Generally we can't make any guarantees...
2310 Jon Heggland
jheggland Offline Send Email
Mar 5, 2003
3:21 pm
... Pretty much, except for that Oracle problem. ... For instance file:/C:/file%201.avi (c:\file 1.avi with encoded space character). This is split into...
2311 david
noway2eden Offline Send Email
Mar 6, 2003
9:36 am
Dear JENA team: According to the manual of installtion and configuration, we built a envirment. JENA 1.6 and Berkeley DB v4.1.25 was both successfuly...
2312 Brian McBride
bwmb Offline Send Email
Mar 6, 2003
11:45 am
Hmm, what sort of system are you running on? Windows, linux? Off the top of my head is to check that you have the right db.dll on your class path. The...
2313 frozados@...
durodematar3 Offline Send Email
Mar 7, 2003
12:13 am
hello, i install BerkeleyDB but i dont underestand where to store files and which are the structure of the database file. I read i have a directory...
2314 david
noway2eden Offline Send Email
Mar 7, 2003
1:29 am
hi,I guess jena will create the db file when your call constructor method on StorageBdbF class, just like RDBMS ModelRDB.create(). best regards 吴炜 ...
2315 noway2eden Offline Send Email Mar 7, 2003
1:51 am
Thanks Bride, My system is based on windows 2000 pro. db.dll can not be found in D:\BerkeleyDB\build_win32\release, but there is some dlls looks like...
2316 david
noway2eden Offline Send Email
Mar 7, 2003
3:18 am
hi,all When I call Model m = new ModelBdb(new StoreBdbF(null,"rdf.db")); it throws a exception java.lang.NoSuchMethodError at...
2317 Dave Wilczynski
dwpssusc Offline Send Email
Mar 7, 2003
9:24 pm
I am trying to convert some Jena code into Servlets. I'm using the new Sun ONE Studio 4 Community Edition IDE. I successfully ran the "same" jena code as a...
2318 Dave Wilczynski
dwpssusc Offline Send Email
Mar 8, 2003
12:05 am
I am wasting a lot of time on getting some straightforward Jena code to work as a servlet (Mostly it's code modified from the Jena Tutorial about Daml). As...
2319 Bob MacGregor
bmacgregor61 Offline Send Email
Mar 8, 2003
12:55 am
Dave, I'm not an expert on servlets, but we noticed that Java sometimes swaps XML parsers when you switch from an application to a servlet. This can break your...
2320 Danny Ayers
danny_ayers Offline Send Email
Mar 8, 2003
9:14 am
... According to the javadoc : "Thrown if the Java Virtual Machine or a classloader tries to load in the definition of a class (as part of a normal method call...
2321 Reto Bachmann-Gmuer
retobg Offline Send Email
Mar 8, 2003
11:06 am
... Hash: SHA1 ... The WYMIWYG mies project has a servlet based annotea client and server which both make extensive use of annotea. Yo can get the source from ...
2322 Brian McBride
bwmb Offline Send Email
Mar 8, 2003
1:36 pm
Hi Dave, Sounds like you need an answer in a hurry. How experienced are you with servlet's? I don't want to offend you by suggesting you check the basic...
2323 Dave Wilczynski
dwpssusc Offline Send Email
Mar 8, 2003
6:56 pm
Thank you, Danny. As Brian surmised so gently, I'm not a servlet expert by any means. I''m sorry for this long message, but I feel like I have to try out some...
2324 Danny Ayers
danny_ayers Offline Send Email
Mar 8, 2003
8:28 pm
Thank you, Danny. As Brian surmised so gently, I'm not a servlet expert by any means. I''m sorry for this long message, but I feel like I have to try out some...
2325 Brian McBride
bwmb Offline Send Email
Mar 8, 2003
8:44 pm
Dave, Sounds like you have a version conflict between the version of Xerces that Jena needs and the version that tomcat is using. Rather than renaming jars, I...
2326 Reto Bachmann-Gmuer
retobg Offline Send Email
Mar 8, 2003
9:36 pm
... Hash: SHA1 did you try to replace ./common/endorsed/xercesImpl.jar in the tomcat distribution directory, with web/WEB-INF/lib/xerces.jar from jena and ...
2327 Dave Wilczynski
dwpssusc Offline Send Email
Mar 8, 2003
11:22 pm
Brian: I did what you (and Danny) suggested, that is, putting all the Jena jars in your-app/WEB-INF/lib. However, that never got off the ground; I got a help...
2328 Dave Wilczynski
dwpssusc Offline Send Email
Mar 8, 2003
11:23 pm
I found the files in question in my 1.4.1 release in a jar called rt.jar. It has many packages in it including javax.xml.parsers which contains the SAX stuff...
2329 Dave Wilczynski
dwpssusc Offline Send Email
Mar 9, 2003
12:53 am
I downloaded the newest version of Tomcat 4.1.18, installed and told my ide about it. I made it the default server for my ide, ran my servlet and it worked. ...
2330 A. J. Rajkumar
rajkumar@... Send Email
Mar 9, 2003
8:37 am
Hi Folks I am using Jena-1.6.0 with SleepyCatDB and I am trying to read in large RDF files obtained from http://rdf.dmoz.org. The files that I am talking about...
2331 A. J. Rajkumar
rajkumar@... Send Email
Mar 9, 2003
9:17 am
Hi Folks Does any body have SleepyCat db-4.1 or db-4.1.25 working with any version of Jena. I have Jena-1.5 and Jena-1.6 working with db-4.0 ONLY, I could not...
2332 Reto Bachmann-Gmuer
retobg Offline Send Email
Mar 9, 2003
11:58 am
The dmoz.rdf is not valid rdf. The attached perl script should fix it. If you translate the script to java let me know! cheers, Reto Domenica, 9 Mar 2003, alle...
2333 Federico Rozados
durodematar3 Offline Send Email
Mar 9, 2003
11:52 pm
Hello, i did this java class and i have problems at //PROBLEMS HERE I want to add RDQL at this source and the only way that i found is that the source code...
2334 A. J. Rajkumar
rajkumar@... Send Email
Mar 9, 2003
11:53 pm
Hi Folks I found two large files and two smaller rdf files on http://rdf.dmoz.org and I applied this script to all four of them. After applying this script, I...
Messages 2305 - 2334 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