Fwd: Problem Deployment on Cent OS 5

2012-10-29 Thread ute Hoffmann
Anfang der weitergeleiteten E-Mail: Von: ute Hoffmann u.hoffm...@tt-pixelmind.com Datum: 29. Oktober 2012 07:47:06 MEZ An: webobjects-dep...@lists.apple.com Betreff: Problem Deployment on Cent OS 5 Hi, We tried to install WebObjects on a Cent OS 5.7 root server (64 bit) at a provider with

Re: Infinite or NaN in NSNumberFormatter doesn't work

2012-10-29 Thread Johann Werner
Hi Lars, if I remember correctly the values NaN and ±Infinity are only defined for Float and Double. They don't exist for BigDecimal as you see in the code snippet that you posted: the constructor throws an NumberFormatException exception in that case. jw Am 25.10.2012 um 20:28 schrieb Lars

Re: Fwd: Problem Deployment on Cent OS 5

2012-10-29 Thread Bastian Triller
i would first check if the classpath is correctly setup (NEXT_ROOT variable and the generated commandline arguments WORootDirectory/WOLocalRootDirectory). Have you tried Java 1.6 yet? is the NEXT_ROOT variable correctly setup? How look the commandline like? Do the WORootDirectory and

Re: Problem Deployment on Cent OS 5

2012-10-29 Thread Pascal Robert
Le 2012-10-29 à 02:47, ute Hoffmann u.hoffm...@tt-pixelmind.com a écrit : Anfang der weitergeleiteten E-Mail: Von: ute Hoffmann u.hoffm...@tt-pixelmind.com Datum: 29. Oktober 2012 07:47:06 MEZ An: webobjects-dep...@lists.apple.com Betreff: Problem Deployment on Cent OS 5 Hi, We

Re: Lazy synchronization and multiple subcomponents

2012-10-29 Thread Miguel Torres
Hi Tim, I will double check the code today, there is something in it that is calling the address() method after the awake() method, before the end of the request. I think that's the key of my problem. Thanks. On 26/10/2012, at 21:28, Tim Worman li...@thetimmy.com wrote: Miguel: I often

Re: [SOLVED] D2W: getting the root pageConfiguration

2012-10-29 Thread Ramsey Gurley
Good catch. But I would do the session bit in resetCaches instead of resetContextCache. I'll update this on integration tonight now that I've got my internet back. Ramsey On Oct 27, 2012, at 1:09 PM, Fabian Peters wrote: I finally found out what's going on. From ERD2WSwitchComponent:

Re: Lazy synchronization and multiple subcomponents

2012-10-29 Thread Tim Worman
Also, I have sometimes used this pattern for sub-components like the two you described (instead of assigning a synchronized EO to a class variable). 1. editMember with member binding public Member member() { return (Member)valueForBinding(member); } public void setMember(Member

Re: [SOLVED] D2W: getting the root pageConfiguration

2012-10-29 Thread Fabian Peters
Thanks Ramsey! Fabian Am 29.10.2012 um 18:10 schrieb Ramsey Gurley: Good catch. But I would do the session bit in resetCaches instead of resetContextCache. I'll update this on integration tonight now that I've got my internet back. Ramsey On Oct 27, 2012, at 1:09 PM, Fabian Peters

Re: MyISAM and Webobjects

2012-10-29 Thread Alexis Tual
Hi, you can, but AFAIK they're not transactionnal, if the request fails you can end up with data inconsistencies at every level Alex 2012/10/30 Gino Pacitti ginok...@mac.com Hi list I read in the wiki a reference to WO not using MyISAM in tables but no explanation why - any pointers to an

Re: MyISAM and Webobjects

2012-10-29 Thread Flavio Donadio
Gino, Since the last time I checked (and it's been a lng time!), MyISAM does not support transactions and referential integrity. For me, this is a good reason to avoid MyISAM. But I am not sure if this is the real reason. Regards, Flavio On 29/10/2012, at 20:09, Gino Pacitti wrote:

Re: MyISAM and Webobjects

2012-10-29 Thread Ramsey Gurley
MyISAM is not ACID. WO was designed around the concept of ACID transactions with highly consistent data. http://www.julianbrowne.com/article/viewer/brewers-cap-theorem Ramsey On Oct 29, 2012, at 3:09 PM, Gino Pacitti wrote: Hi list I read in the wiki a reference to WO not using MyISAM in

Re: MyISAM and Webobjects

2012-10-29 Thread Kieran Kelleher
Anecdotally, it seems modern 5.5 InnoDB should be faster than MyISAM and especially so if enough memory is available . InnoDB uses available memory to cache/buffer entire records of data whereas last time I read about this, MyISAM only caches Primary Keys in memory and other MyISAM fields'

Re: MyISAM and Webobjects

2012-10-29 Thread Kieran Kelleher
Gino, Here is some stuff for getting MySQL configured for InnoDB if it is of help. KK On Oct 29, 2012, at 6:09 PM, Gino Pacitti ginok...@mac.com wrote: Hi list I read in the wiki a reference to WO not using MyISAM in tables but no explanation why - any pointers to an explanation. Gino

Re: MyISAM and Webobjects

2012-10-29 Thread Kieran Kelleher
Whoops forgot to paste the link: https://github.com/kierankelleher/gic-mysql-tools On Oct 29, 2012, at 9:41 PM, Kieran Kelleher kelleh...@gmail.com wrote: Gino, Here is some stuff for getting MySQL configured for InnoDB if it is of help. KK On Oct 29, 2012, at 6:09 PM,