12
I Use This!
Activity Not Available

News

Analyzed 8 months ago. based on code collected about 4 years ago.
Posted almost 17 years ago
Hi All, I have made quite a bit of progress but am fighting an issue with the database field on the AddGeometryColumn function. For the Point type, I am expecting the following: [code]select AddGeometryColumn([b]'gpswork',[/b] 'waypoint2' ... [More] , 'location', 4326, 'POINT', 2);[/code] Instead, the ddl is outputing the following: [code]SELECT AddGeometryColumn( [b]''[/b], 'waypoint2', ... [Less]
Posted almost 17 years ago
Hi, I have a Problem using anything else than 'int' as single primary key with application-identity. If I try to retreive an object by its id (that is not of type int) from the db, it always sais: [code]org.jpox.exceptions.JPOXException: ... [More] [JPOX-029004] The key value passed to construct a SingleFieldIdentity of type "javax.jdo.identity.StringIdentity" for class ... [Less]
Posted almost 17 years ago
Hey Guys, First, congratulations on 1.2.0-final and 1.2.1! When I downloaded it and tried to get it to work with WAS 6.1, it looks like there was a small change introduced in the way jpox loads plugins using the NonManagedPluginRegistry. In ... [More] the method NonManagedPluginRegistry.registerBundle(...), the following lines (316-325) take a jar file and try to load it from a URL. For some ... [Less]
Posted almost 17 years ago
Hi guys, We've been running fine with the 2008-03-11 snapshot but because we've encountered an unknown problem with members not being removed from collections, we've tried updating to the 2008-04-04 snapshot to see if this makes any difference. ... [More] When we try to run SchemaTool or actually install the app, we get a few warnings such as the following: 09:16:33,860 (main) WARN ... [Less]
Posted almost 17 years ago
Hi, Although I look for any solution in the documentations about my problem , I cannot find any clue. My problem is about persistence-by-reachability. Now I have the classes below class A { private B b; } class B { } and metadata for A class includes : Now I want to ...
Posted almost 17 years ago
I'm developping a rcp app using jpox. I followed the instructions on the following post http://www.jpox.org/servlet/wiki/pages/viewpage.action?pageId=1179712 on how to use JPOX inside RCP. Everything worked pretty well, however i lost the log4j ... [More] logging funtionality in spite off having the jar as well as log4j.properties in classpath. As anyone faced the same problem? I think it may be a ... [Less]
Posted almost 17 years ago
I'm trying to use JPOX from within an Eclipse plugin, all the jars jdo2-api-2.1.jar, jpox-core-1.2.1.jar, jpox-rdbms-1.2.1.jar, etc. are on the runtime classpath of the plugin. Of course I get the obligatory exception that appears to be a ... [More] ClassNotFoundException but I'm a bit confused by it as it appears that the class that is being complained about is trying to be loaded by a class from within ... [Less]
Posted almost 17 years ago
Hi, I wrote the following utility, that performs some basic CRUD operations, in a ... generic way, and hopefully you 'll find useful for your jdo projects. However, the loadAll() method has some strange behaviour from time to time, other times ... [More] it returns results, other times not, I do not know why, so please double check and/or provide feedback. [code] package org.jpox.tutorial; ... [Less]
Posted almost 17 years ago
Hi, I have a question about final fields. I declare a field that contains a Custom Object and I create an Instance direktly like this [code]@Serialized public final MyObject myObject = new MyObject();[/code] MyObject is PersistenceCapable and ... [More] implements Serializable. Now I enhance the class with the enhancer and it enhances both classes. Now I start the SchemaTool to create the tables for ... [Less]
Posted almost 17 years ago
Hi again, I just got an error using the enhancer with the hint to look into the log file but there was nothing in it. I first had to change the loglevel of everything (because I had no clue where the error happens) to DEBUG before I was told ... [More] that: [code]14:11:36,487 (main) DEBUG [JPOX.ClassLoading] - [JPOX-001004] Class com.foo.bar was not found in the CLASSPATH [Class resolver called from ... [Less]