Re: Strange error

2018-03-17 Thread Chuck Hill
: Re: Strange error Hi Michael, It appears one of the objects being saved is for a read only entity. Can you tell if that is what is going on? Ricardo On Mar 17, 2018, at 11:34 AM, Michael Kondratov mailto:mich...@aspireauctions.com>> wrote: Hello! I am getting a new strange error in o

Re: Strange error

2018-03-17 Thread Ricardo Parada
Hi Michael, It appears one of the objects being saved is for a read only entity. Can you tell if that is what is going on? Ricardo > On Mar 17, 2018, at 11:34 AM, Michael Kondratov > wrote: > > Hello! > I am getting a new strange error in our new

Strange error

2018-03-17 Thread Michael Kondratov
Hello! I am getting a new strange error in our new WO application: java.lang.NullPointerException at com.webobjects.eoaccess.EODatabaseContext._verifyNoChangesToReadonlyEntity(EODatabaseContext.java:4700) at com.webobjects.eoaccess.EODatabaseContext.performChanges

Re: Strange error

2017-06-21 Thread Chuck Hill
some bad data somewhere? Chuck From: Markus Ruggiero Date: Wednesday, June 21, 2017 at 7:34 AM To: "webobjects-dev@lists.apple.com" Cc: Chuck Hill Subject: Re: Strange error Hi Chuck, I just got more info from the customer and was able to reproduce this in my dev env. It was easy

Re: Strange error

2017-06-21 Thread Markus Ruggiero
> From: Webobjects-dev > on behalf of > Markus Ruggiero > Date: Wednesday, June 21, 2017 at 2:52 AM > To: "webobjects-dev@lists.apple.com" > Subject: Strange error > > A customer just reported a problem in a functionality that has not been > touched for at

Re: Strange error

2017-06-21 Thread Chuck Hill
, 2017 at 2:52 AM To: "webobjects-dev@lists.apple.com" Subject: Strange error A customer just reported a problem in a functionality that has not been touched for at least 3 years. Error: java.lang.IllegalStateException: Found null delegate. You can disable this check

Strange error

2017-06-21 Thread Markus Ruggiero
A customer just reported a problem in a functionality that has not been touched for at least 3 years. > > Error: > java.lang.IllegalStateException: Found null delegate. You can disable this > check by setting er.extensions.ERXRaiseOnMissingEditingContextDelegate=false > in your WebObjects.pr

Strange error after instance auto-reboot

2017-06-10 Thread Sébastien Rottiers
Hi all, We facing a strange error on a production server. It seems that sometimes after the reboot of a scheduled ERRest app instance, the instance is in a weird state, as a call like /something/{uuid:String} fail because routeObjectForKey(«uuid») return null. I noticed that each time an

Re: Strange error using Wonder (same code works fine in WebObjects 5.3)

2016-01-02 Thread Samuel Pelletier
HI, For the load ordering problem, if you have some wonder source projects in your workspace, the load order is sometime modified when launching with Eclipse. This does not cause problem on the server though. I do not remember the exact cases I experienced but I burned myself in the past with

Re: Strange error using Wonder (same code works fine in WebObjects 5.3)

2015-12-29 Thread jazzsalsa
It's solved :) I removed the ERAttributeExtension framework, but I have still no idea how to move make it load first. Anyway, I am on the move again. Thanks! Bart On Tue, 2015-12-29 at 17:53 +0100, Fabian Peters wrote: > You could check the java.class.path contents that get logged on > applicat

Re: Strange error using Wonder (same code works fine in WebObjects 5.3)

2015-12-29 Thread Fabian Peters
You could check the java.class.path contents that get logged on application start. If ERAttributeExtension is listed before JavaEOAccess there as well, then I'm at a loss. > Am 29.12.2015 um 17:33 schrieb jazzsalsa : > > Hi Fabian, > > Thanks for the fast reply! That is already the case. it lo

Re: Strange error using Wonder (same code works fine in WebObjects 5.3)

2015-12-29 Thread Fabian Peters
Hi Bart, The ERAttributeExtension framework has to be loaded before JavaEOAccess. You can change the order in your project properties (right-click on the project folder in eclipse): cheers, Fabian > Am 29.12.2015 um 16:34 schrieb jazzsalsa >: > > Hi list, > > I am

Strange error using Wonder (same code works fine in WebObjects 5.3)

2015-12-29 Thread jazzsalsa
Hi list, I am stuck using Wonder (again, the learning curve is steep ;). Trying to fetch data from a postgresql database. The data looks like this: creationDate (timestamptz) description varchar(255)id tagID title varchar(50) url varchar(50) 2015-12-29 13:46:19 +0100

Re: Strange Error On Start

2012-05-24 Thread Lachlan Deck
<http://lmgtfy.com/?q=java.util.zip.ZipException%3A+invalid+CEN+header+(bad+signature)> :) On 24/05/2012, at 4:43 PM, Ron X wrote: > hi > i have some strange error on app start (i use maven for dependencies): > > Exception in thread "main" com.webobjects.f

Strange Error in my App

2007-12-21 Thread Daniele Corti
Hi list, I've notice that my new App makes a strange error while starting from Eclipse: [2007-12-21 13:04:14 CET] java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.jav

Re: Strange Error ???

2007-04-03 Thread Chuck Hill
On Apr 3, 2007, at 9:30 AM, James Cicenia wrote: The database says it is null. That probably means that it was set in memory but the EOF state was scrambled and the change did not get registered for saving to the DB. Well I figure it is an unfired fault, but why would the print stateme

Re: Strange Error ???

2007-04-03 Thread James Cicenia
The database says it is null. Well I figure it is an unfired fault, but why would the print statement after the fact cure it? Overridden any EOF methods? Like? I actually have left that print statement in for now in my production as it cures this random problem. James On Apr 3, 2007, at

Re: Strange Error ???

2007-04-03 Thread Chuck Hill
On Apr 2, 2007, at 3:16 PM, James Cicenia wrote: Sorry - It is inconsistent. In other words it takes the resource and it is stored while sometimes just a null is gotten. How are you determining that it is null? However, it is always there when the print statement is issued after?! It s

Re: strange error

2007-04-03 Thread Mike Schrag
Actually the other way around in this case ... the snapshot cache is expecting to contain NSMutableArrays, but you've somehow managed to get an NSArray in there. Are you doing something weird like manually replacing the array in a to-many relationship or something? On Apr 3, 2007, at 6:32

Re: strange error

2007-04-03 Thread Dev WO
Hello Daniele, I'm sure someone will come with more help, but just in case, are your sure you're getting a NSArray? Usually a ClassCastException is thrown if you get something else than the class that was defined. You're not passing NSMutableArray instead? Xavier Hi list, I've an error w

strange error

2007-04-03 Thread Daniele Corti
Hi list, I've an error witch I don't understand how I should cause it: WARN NSLog - : Exception occurred while handling request: java.lang.ClassCastException : com.webobjects.foundation.NSArray [2007-04-03 10:56:25 CEST] java.lang.ClassCastException: com.webobjects.foundation.NSArray at com

Re: Strange Error ???

2007-04-02 Thread James Cicenia
Sorry - It is inconsistent. In other words it takes the resource and it is stored while sometimes just a null is gotten. However, it is always there when the print statement is issued after?! - James On Apr 2, 2007, at 4:51 PM, Chuck Hill wrote: Hi James, Ah, another guessing game for us

Re: Strange Error ???

2007-04-02 Thread Chuck Hill
Hi James, Ah, another guessing game for us. :-). Uh, I'd like to buy a vowel? What means this, "sometimes it doesn't"? Chuck On Apr 2, 2007, at 2:47 PM, James Cicenia wrote: Ok this is messing with my head here. I have the following line: newPhase.setResponsiblePerson((ProjectRosterM

Strange Error ???

2007-04-02 Thread James Cicenia
Ok this is messing with my head here. I have the following line: newPhase.setResponsiblePerson((ProjectRosterMember)msp.resources ().objectAtIndex(0)); Sometimes the above works and sometimes it doesn't. HOWEVER if I put the println AFTER it it always works