Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Paul Dunkler
Hi Guys, i´m currently trying to convert our deployment scenario to maven. Therefore i am currently creating the pom-hierarchy plus the pom's for the different projects which build our products. Well i've put the PostgresqlPlugin in one of these builds and it is broken now. It is throwing

Re: Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Ramsey Gurley
NSArray doesn't have a var args constructor http://developer.apple.com/legacy/mac/library/documentation/InternetWeb/Reference/WO542Reference/com/webobjects/foundation/NSArray.html Only wonder's version of NSArray has that. Ramsey On Dec 1, 2011, at 7:25 AM, Paul Dunkler wrote: Hi Guys,

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Ramsey Gurley
Or just select the error in your Problems view and right click to delete it. Ramsey On Dec 1, 2011, at 12:29 AM, Stefan Klein wrote: In some tough cases following steps will do it: 1) close the project in eclipse 2) close eclipse 3) delete bin and build directories 4) open eclipse 5)

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Jérémy DE ROYER [INGENCYS]
For me, these are the two worst bugs wolips : - erros that do not exist - validation that freeze wolips For the first one, either I don't care or I restart and clean my project For the second one, either I disable validation or I kill wolips and restart... Jérémy Le 1 déc. 2011 à 17:23, Ramsey

Re: Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Paul Dunkler
NSArray doesn't have a var args constructorhttp://developer.apple.com/legacy/mac/library/documentation/InternetWeb/Reference/WO542Reference/com/webobjects/foundation/NSArray.htmlOnly wonder's version of NSArray has that.Okay, but that isn't an explanation for the broken compile, is it?I mean it

Re: Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Ramsey Gurley
On Dec 1, 2011, at 9:44 AM, Paul Dunkler wrote: NSArray doesn't have a var args constructor http://developer.apple.com/legacy/mac/library/documentation/InternetWeb/Reference/WO542Reference/com/webobjects/foundation/NSArray.html Only wonder's version of NSArray has that. Okay, but that

Re: Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Henrique Prange
Hi Paul, Are you adding the PostgresqlPlugin dependency after the ERExtensions dependency in the pom.xml? Wonder solution to enhance the NSArray class requires the ERExtension framework to be loaded before the JavaFoundation framework, which is transitively added by the PostgresqlPlugin.

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Pascal Robert
Le 2011-12-01 à 11:36, Jérémy DE ROYER [INGENCYS] a écrit : For me, these are the two worst bugs wolips : - erros that do not exist - validation that freeze wolips For the first one, either I don't care or I restart and clean my project For the second one, either I disable validation or

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Kevin Spake
On Dec 1, 2011, at 8:36 AM, Jérémy DE ROYER [INGENCYS] wrote: For me, these are the two worst bugs wolips : - erros that do not exist - validation that freeze wolips For the first one, either I don't care or I restart and clean my project Unfortunately, that did not work for me. So far,

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Chuck Hill
On 2011-12-01, at 11:06 AM, Kevin Spake wrote: On Dec 1, 2011, at 8:36 AM, Jérémy DE ROYER [INGENCYS] wrote: For me, these are the two worst bugs wolips : - erros that do not exist - validation that freeze wolips For the first one, either I don't care or I restart and clean my project

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Jérémy DE ROYER [INGENCYS]
Can we use WOLips 3.7 in a production environment ? On Snow Leopard ? Is it stable ? Jérémy Le 1 déc. 2011 à 19:30, Pascal Robert a écrit : Le 2011-12-01 à 11:36, Jérémy DE ROYER [INGENCYS] a écrit : For me, these are the two worst bugs wolips : - erros that do not exist - validation

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Pascal Robert
Le 2011-12-01 à 15:39, Jérémy DE ROYER [INGENCYS] a écrit : Can we use WOLips 3.7 in a production environment ? On Snow Leopard ? Is it stable ? I was using WOLips 3.7 on Snow Leopard for a couple of week, and I switched to Lion 5 weeks ago, working great (well, great except FileVault2

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Raymond NANEON
I use WOLips 3.7 and it's very clean. I use it on Snow Leopard and Lion and I have not problem in running or compilation. Ray Le 1 déc. 2011 à 21:39, Jérémy DE ROYER [INGENCYS] a écrit : Can we use WOLips 3.7 in a production environment ? On Snow Leopard ? Is it stable ? Jérémy Le

Re: D2W Can I access Object property values from the rule system?

2011-12-01 Thread Markus Ruggiero
Ramsey hits again! Thanks a lot. The most obvious is it. Whenever I teach programming (and WO) I tell my students when it starts to get complicated it most probably is wrong. Sometimes I do not follow my own advice. Thanks again ---markus--- On 28.11.2011, at 18:27, Ramsey Gurley wrote:

custom handling of edit/inspect buttons on list page

2011-12-01 Thread David Holt
Hi all, Is it possible to go to a custom inspect or edit page configuration from a list page using the stock buttons? It seems that the return button in the list calls the nextPageDelegate. Sorry if the question seems basic. David ___ Do not post

ERMD2WEditToOneTypeAhead with pulldown?

2011-12-01 Thread Jesse Tayler
ERMD2W gurus? I'd like to have my ERMD2WEditToOneTypeAhead autofill and also do a pulldown style search whereas now I can only set the typeAheadMinimumCharaceterCount to 1 which does something similar after typing at least one character -- I have few enough choices that I'd like to at least

Re: custom handling of edit/inspect buttons on list page

2011-12-01 Thread David Holt
Cool! Even more basic than I would have guessed :-) Set a rule such as this that overrides the default assignment: 100 : pageConfiguration = 'ListAreas' = editConfigurationName = EditAssignPeopleToArea [com.webobjects.directtoweb.Assignment] David On 2011-12-01, at 2:43 PM, David Holt

Re: Compilation errors when adding PostgresqlPlugin to maven-woapplication-project

2011-12-01 Thread Paul Dunkler
Hi Henrique,Are you adding thePostgresqlPlugin dependency after the ERExtensions dependency in the pom.xml? Wonder solution to enhance the NSArray class requires the ERExtension framework to be loaded before the JavaFoundation framework, which is transitively added by thePostgresqlPlugin.Exactly

AjaxObserveField observeFieldFrequency problem

2011-12-01 Thread Michael Gargano
Anyone ever encounter this? I have a CCAjaxTab and inside each tab is a AjaxObserveField observing a text field and, somewhere else in the tab, an update container. the AjaxObserveField has an observeFieldFrequency of 1. everything works fine except in IE (of course) when you click

Re: Question on WebObjects, WOLips and Wonder Tutorial, part 2

2011-12-01 Thread Kevin Spake
The error I am getting is User cannot be resolved to a type. It is occurring in Main.WO, and also shows up multiple times when the app is run. User is the name of the eomodel, and the User and _User files are in the package in Sources. The app launches, but when I click on the submit button