AW: AW: Project activity

2016-01-12 Thread Christopher Cudennec
Hi everyone, at least there seems to be roadmap for JPA 2.1. Unfortunately the documents look really outdated: - http://openjpa.apache.org/jpa-2.1-roadmap.html - http://openjpa.apache.org/jpa-2.1-tasks.html - http://openjpa.apache.org/jpa-2.1-development-process.html Maybe I'll try to contact on

AW: Project activity

2016-01-04 Thread Christopher Cudennec
njpa.apache.org Betreff: Re: Project activity On 04/01/2016 08:50, Christopher Cudennec wrote: > Hi everyone! > I’m curious about the project’s activity and future plans. Hi Christopher, I am not an OpenJPA dev, just a plain user. Anyway... > Reason one: I got no answer on my previous questio

Project activity

2016-01-03 Thread Christopher Cudennec
:-).   Mit freundlichem Gruß / Kind regards / 此 致 敬 礼   Christopher Cudennec   24technology GmbH Falkenried Piazza Straßenbahnring 15 20251 Hamburg | Deutschland Tel.:+49   (0)40   226 3370-0 Fax:+49   (0)40   226 3370-80   www.24technology.de <http://www.24technology

ClassCastException with "RestoreState=All"

2016-01-03 Thread Christopher Cudennec
have an opinion on that?   Mit freundlichem Gruß / Kind regards / 此 致 敬 礼   Christopher Cudennec   24technology GmbH Falkenried Piazza Straßenbahnring 15 20251 Hamburg | Deutschland Tel.:+49   (0)40   226 3370-0 Fax:+49   (0)40   226 3370-80   www.24technology.de <http://

Auditing changes to lists (OneToMany)

2015-12-14 Thread Christopher Cudennec
Hi OpenJPA users!   We are finally trying to use the latest OpenJPA release 2.4.0 and I’m really glad OpenJPA supprts Java 8! :-)   The project is somewhat old – it started using OpenJPA 2.2.0 a couple of years ago and still uses a custom auditing service that does not use the „new“ Auditor in

Re: Auditing: Tests and maps

2011-12-22 Thread Christopher Cudennec
Hi Pinaki, your proposal led me to the solution. The good news is: I can track the changes by changing the code the way you proposed. What puzzled me and made me think that this must be a bug in OpenJPA is the fact that the field "stringAttributes" was marked as dirty but the Map from the oldS

Auditing: Tests and maps

2011-12-06 Thread Christopher Cudennec
Hi OpenJPA team, hi Pinaki! I've finally managed to check out the new auditing facility of OpenJPA 2.2 and have some feedback for you guys: 1) No test possible for tracking updates? I first tried to reuse my Junit tests for auditing and wondered why your new implementation did not work. The ex

Re: Problems getting the old state of a Map / auditing

2011-10-03 Thread Christopher Cudennec
Both of you are perfectly right. Since OSGI is not a requirement in my project I'll see if I can invest some time in testing the new functionality. I'll let you know about my results. Cheers, Christopher Am 29.09.2011 09:32, schrieb Bengt Rodehav: Yes that is correct. I think the functionalit

Re: Problems getting the old state of a Map / auditing

2011-09-28 Thread Christopher Cudennec
I see. I'm looking forward to the next release then! :) Am 22.09.2011 18:39, schrieb Pinaki Poddar: Hi Christopher, The "old" value is not available *externally* via SaveFieldManager. That is why all that work gone in writing an Auditor, as I had mentioned earlier. - Pinaki Poddar Chai

Re: Problems getting the old state of a Map / auditing

2011-09-21 Thread Christopher Cudennec
Hi Pinaki, The issue is that the field actually *is* marked as dirty. But when I compare the Map of my current entity and the Map of the old state (that I get from the SaveFieldManager) it contains the same values. Example: // Step 1: Create an instance of Parent Parent parent = new Parent();

Problems getting the old state of a Map / auditing

2011-09-19 Thread Christopher Cudennec
Hi Pinaki, hi everyone else ;)! First of all thanks for pointing me to 'openjpa.RestoreState', Pinaki. Now I got the problem solved with the old state from the SaveFieldManager. Unfortunately I have another issue with Maps. When I change the value of a Map entry I can't track the change because

Re: problem with query / German umlaut

2011-09-15 Thread Christopher Cudennec
cter encodings are passing through correctly. On Aug 31, 2011, at 12:53 PM, Christopher Cudennec [via OpenJPA] wrote: Hi! I have a simple (?) problem with a query against data with German umlaut characters. Consider the following data: create table test (property varchar(255)); insert into t

Re: Why SaveFieldManager without state? (Auditing)

2011-09-14 Thread Christopher Cudennec
Hi Pinaki! Thanks for mentioning the RestoreState! I read your blog but might have forgotten the property anyway. I'll let you know as soon as I am back in my office! I read about the new auditing facility only recently when I had already set up my services. I guess I'll check the latest cha

Why SaveFieldManager without state? (Auditing)

2011-09-14 Thread Christopher Cudennec
Hi everyone! Inspired by Pinaki Poddar's blog about auditing I try to implement an auditing facility. I came across some weird (at least for me ;)) behaviour when using the SaveFieldManager to access the old state of an object: getState() returns 'null'. Why is that? I get the 'null' state in

problem with query / German umlaut

2011-08-31 Thread Christopher Cudennec
Hi! I have a simple (?) problem with a query against data with German umlaut characters. Consider the following data: create table test (property varchar(255)); insert into test values ('Diskontsatze'); insert into test values ('Diskontsätze'); select * from test where prop = 'Diskontsatze'; W