Re: Unable to locate WOOpenURL

2007-09-20 Thread Q
I know this doesn't fix your problem, but we just define WOPort to some arbitrary value and bookmark the url in the browser, no need for autoopen, because your development instance always runs on the same port. It also has the other advantage of avoiding accidentally leaving multiple inst

Re: Invoking a component with arguments in WOD

2007-09-20 Thread Lachlan Deck
Hi Lachlan, On 21/09/2007, at 12:53 PM, Lachlan Scott wrote: -Original Message- Actually why not do this? MyWebObjectName : MyDesiredComponentName { user = session.user; } This is what I thought I wanted to do, thanks. Can you clarify if this below would be a true and gene

Re: Unable to locate WOOpenURL

2007-09-20 Thread Peter Vandoros
Hi Lachlan, Make sure WORootDirectory is set to point to you Apple directory. e.g. -WORootDirectory "C:/Apple" Regards Peter Lachlan Scott wrote: We've been struggling with (only one of) our PCs not being able to autolaunch a browser from a build We're getting this message in the consol

Unable to locate WOOpenURL

2007-09-20 Thread Lachlan Scott
We've been struggling with (only one of) our PCs not being able to autolaunch a browser from a build We're getting this message in the console [2007-09-21 14:40:22 NZST] Unable to locate WOOpenURL on your computer, AutoOpen launch will not work [2007-09-21 14:40:22 NZST] Opening application's

Re: Deep hierarchical search

2007-09-20 Thread Lachlan Deck
On 21/09/2007, at 11:40 AM, Klaus Berkling wrote: I hope someone has thoughts on performing a search through a hierarchical data model. I have a WO application that receives, stores and retrieves student study information. More here: http://www.dyned.com/products/internetrm.shtml In my mo

RE: Invoking a component with arguments in WOD

2007-09-20 Thread Lachlan Scott
Lachlan > -Original Message- > Actually why not do this? > MyWebObjectName : MyDesiredComponentName { > user = session.user; > } This is what I thought I wanted to do, thanks. Can you clarify if this below would be a true and generic version of what you've suggested for those of u

Deep hierarchical search

2007-09-20 Thread Klaus Berkling
I hope someone has thoughts on performing a search through a hierarchical data model. I have a WO application that receives, stores and retrieves student study information. More here: http://www.dyned.com/products/internetrm.shtml In my model I have a group entity which have sub-groups via

Re: values from request question

2007-09-20 Thread Johann Werner
Am 20.09.2007 um 17:37 schrieb Daniele Corti: 2007/9/20, Johann Werner <[EMAIL PROTECTED]>: Hi all, I have a weird behaviour of takeValuesFromRequest. I have a page with a form that has a radio button group having values from 1 to n. with radiobutton : WORadioButton {

Re: Strange Behavior with EOModelGroup

2007-09-20 Thread David Holt
Hi Daniele, If you add your own model, you will likely need to add it to your Resources subfolder for it to be built properly. If you put it at root level, your default settings likely won't pick it up. Make sure that you also add the correct plugin for your database to the project. Hop

Re: Wonder How to get it running?

2007-09-20 Thread Guido Neitzer
On 20.09.2007, at 01:39, Ute Hoffmann wrote: [Note: There is a Wonder list for Wonder related questions.] I'm still on 5.2.4 as I do not want to give up WOBuilder or risk to have my model corrupted by accidentally opening it with the wron editor:-( There actually is a WebObjects Builder in

Re: values from request question

2007-09-20 Thread Daniele Corti
2007/9/20, Johann Werner <[EMAIL PROTECTED]>: > > Hi all, > > I have a weird behaviour of takeValuesFromRequest. I have a page with > a form that has a radio button group having values from 1 to n. > > > > > > > > > with > > radiobutton : WORadioButton { >name = "reportSelect";

Strange Behavior with EOModelGroup

2007-09-20 Thread Daniele Corti
Hi all, I'm making a new version of an app, so I simply create a new Project in Eclipse (I made a WonderApplication, but the problem is out wonder), then I add a EOModel that I use in the other app and I get this error: java.lang.IllegalArgumentException: An object store for the entity " store

Problems using ERSelenium

2007-09-20 Thread Ruth Palmer
I'm currently trying to get Selenium working and trying to use ERSelenium in Wonder frameworks to run all the tests I've created and placed under Resources/Selenium in my eclipse project. the URL I'm using is: http://localhost:5/cgi-bin/WebObjects/ TravelPoint.woa/-42421/wa/SeleniumStartTe

values from request question

2007-09-20 Thread Johann Werner
Hi all, I have a weird behaviour of takeValuesFromRequest. I have a page with a form that has a radio button group having values from 1 to n. with radiobutton : WORadioButton { name = "reportSelect"; value = counter; selection = selectedReport; } gives

Re: Force Refresh Relation

2007-09-20 Thread Kieran Kelleher
Touché! Yes, I guess I asked for that :-) If the data is volatile and changing by some background process that WO does not know about then is this what the shared ec was designed for? I thought the shared ec was for stuff like look up tables that never change (well between application resta

Re: class does not extend WOElement

2007-09-20 Thread John Huss
I had this error too - with my PageWrapper component - so almost all my components were showing errors. So I tried this and it worked: find . -iname *.html -exec touch {} \; It just touches all the html files so that eclipse re-analyzes them; and the errors go away. John On 9/20/07, Johann We

Re: Validation Week

2007-09-20 Thread Sam Barnum
Right, SimpleDateFormat isn't thread safe. I've heard recommendataions to use joda time instead (http://joda- time.sourceforge.net/) Seems like it takes some of the ugliness out of dealing with dates (haven't used it personally, but plan to) I think it's probably a good fit for what you'r

Fetching Relation Empty

2007-09-20 Thread Daniele Corti
Hi all, I was looking for a way to fetch an object that have empty relations using EOQualifiers I used this qualifier: keyValueQualifier = new EOKeyValueQualifier("activations", EOQualifier.QualifierOperatorEqual, EOEnterpriseObject.NullValue); but it doesn't seem to work. activations is a

Re: Wonder How to get it running?

2007-09-20 Thread Pascal Robert
Le 07-09-20 à 03:39, Ute Hoffmann a écrit : I'm still on 5.2.4 as I do not want to give up WOBuilder or risk to have my model corrupted by accidentally opening it with the wron editor:-( Well, WO Builder is still there with 5.3 on Mac OS X... And EOModeler IS the one who corrupt models

Re: Invoking a component with arguments in WOD

2007-09-20 Thread Lachlan Deck
On 19/09/2007, at 4:58 PM, Johann Werner wrote: Am 19.09.2007 um 02:43 schrieb Lachlan Deck: On 19/09/2007, at 8:15 AM, Lachlan Scott wrote: In our application, we have a log in component which adds a User object to the Session if the supplied credentials are correct. For testing purposes

Re: Force Refresh Relation

2007-09-20 Thread Lachlan Deck
On 20/09/2007, at 6:41 PM, Alexander Spohr wrote: Am 20.09.2007 um 08:19 schrieb Lachlan Deck: Well put. Would you have any ideas, however, why unless I use invalidateAllObjects on the shared ec periodically it doesn't pick up newly inserted objects added by another app into the db, or in

Re: Force Refresh Relation

2007-09-20 Thread Alexander Spohr
Am 20.09.2007 um 08:19 schrieb Lachlan Deck: Hi Alan, Should I ignore this mail as I am not Alan? Well put. Would you have any ideas, however, why unless I use invalidateAllObjects on the shared ec periodically it doesn't pick up newly inserted objects added by another app into the db,

Re: class does not extend WOElement

2007-09-20 Thread Daniele Corti
2007/9/20, Johann Werner <[EMAIL PROTECTED]>: > > Call it luck or divine intervention: starting work today the error is gone > :-) > > Don't know why but the error was still displayed in the package explorer > but opening the concerned components in the component editor showed that > everything is

Re: class does not extend WOElement

2007-09-20 Thread Johann Werner
Call it luck or divine intervention: starting work today the error is gone :-) Don't know why but the error was still displayed in the package explorer but opening the concerned components in the component editor showed that everything is fine and after a resave the error icon goes away.

Wonder How to get it running?

2007-09-20 Thread Ute Hoffmann
I'm still on 5.2.4 as I do not want to give up WOBuilder or risk to have my model corrupted by accidentally opening it with the wron editor:-( I would like to experiment with Wonder. I tried to copy the Excel generator Example content into a Xcode sample app. I cannot build it (The Framewo