Re: Setting up horizontal inheritance

2008-11-03 Thread Paul Hoadley
On 04/11/2008, at 4:33 PM, Lachlan Deck wrote: On 04/11/2008, at 9:12 AM, Chuck Hill wrote: On Nov 2, 2008, at 10:30 PM, Paul Hoadley wrote: On 03/11/2008, at 3:59 PM, Chuck Hill wrote: [2008-11-3 16:53:8 CST] : Exception occurred while handling request: java.lang.IllegalStateExceptio

Re: Setting up horizontal inheritance

2008-11-03 Thread Lachlan Deck
On 04/11/2008, at 9:12 AM, Chuck Hill wrote: On Nov 2, 2008, at 10:30 PM, Paul Hoadley wrote: On 03/11/2008, at 3:59 PM, Chuck Hill wrote: [2008-11-3 16:53:8 CST] : Exception occurred while handling request: java.lang.IllegalStateException: rowDiffsForAttributes: snapshot in com.webob

Re: Applications respond "Access Denied" to wotaskd

2008-11-03 Thread Jeremy Rosenberg
Direct Connect was explicitly disabled, so I think that meant it was enabled. But it doesn't seem to matter whether I specifically enable or disable it in WOMonitor. I know if I don't explicitly disable it in our other installation it won't permit me to refuse new sessions. But it still

Re: Setting up horizontal inheritance

2008-11-03 Thread Chuck Hill
See below. On Nov 2, 2008, at 10:30 PM, Paul Hoadley wrote: On 03/11/2008, at 3:59 PM, Chuck Hill wrote: On Nov 2, 2008, at 9:18 PM, Paul Hoadley wrote: I'm sure I'm close to understanding this... thanks for bearing with me. On 03/11/2008, at 1:19 PM, Ken Anderson wrote: On Nov 1, 200

Re: Applications respond "Access Denied" to wotaskd

2008-11-03 Thread Chuck Hill
On Nov 3, 2008, at 12:26 PM, Jeremy Rosenberg wrote: Hi List We are trying to set up a new server, we have JavaMonitor running on the web server with the apache connector and wotaskd running on the app server. JavaMonitor starts up applications just fine via the web interface. But whe

Applications respond "Access Denied" to wotaskd

2008-11-03 Thread Jeremy Rosenberg
Hi List We are trying to set up a new server, we have JavaMonitor running on the web server with the apache connector and wotaskd running on the app server. JavaMonitor starts up applications just fine via the web interface. But when we try to stop an app via the JavaMonitor interface (e

Re: returning another component or page

2008-11-03 Thread Amedeo Mantica
there is every day something new to learn :) Thanks Amedeo On 03/nov/08, at 21:00, Chuck Hill wrote: WOApplication .application().pageWithName(INPGNotSupportedBrowser.class.getName(), context ); On Nov 3, 2008, at 11:54 AM, Amedeo Mantica wrote: ok, but I'm in the session... how can i c

Re: returning another component or page

2008-11-03 Thread Chuck Hill
On Nov 3, 2008, at 11:39 AM, Amedeo Mantica wrote: may be this piece code I made correct? I override appendToResponse methon in Session It works, but I don't know if it is correct.. Can you confirm? Thanks Amedeo public void appendToResponse(WOResponse response, WOContext context) {

Re: returning another component or page

2008-11-03 Thread Amedeo Mantica
may be this piece code I made correct? I override appendToResponse methon in Session It works, but I don't know if it is correct.. Can you confirm? Thanks Amedeo public void appendToResponse(WOResponse response, WOContext context) { if ( this.browser().isIE() ) { INPG

Re: Spell Check with WebObjects

2008-11-03 Thread shravan kumar
Thanks for your Mike. --- On Mon, 11/3/08, Michael Schrag <[EMAIL PROTECTED]> wrote: > From: Michael Schrag <[EMAIL PROTECTED]> > Subject: Re: Webobjects-dev Digest, Vol 5, Issue 1061 > To: [EMAIL PROTECTED] > Cc: webobjects-dev@lists.apple.com > Date: Monday, November 3, 2008, 11:20 PM > Yeah .

Re: Webobjects-dev Digest, Vol 5, Issue 1061

2008-11-03 Thread Michael Schrag
Yeah .. It's just a low level interface to Google's service. How you choose to present it in a UI is up to you. - Original Message - From: shravan kumar [mailto:[EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: webobjects-dev@lists.apple.com Sent: Mon, 03 Nov 2008 12:36:57 -0500 Subject: Re: W

Re: Auto Save form data

2008-11-03 Thread shravan kumar
Hello Robert, Thanks for your detailed notes. This will surely help me implement this feature in a good way. We are in the process of getting to this. I will update in case there are any issues. Thank You, Shravan -- --- On Thu, 10/30/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wro

Re: Setting up horizontal inheritance

2008-11-03 Thread Ken Anderson
On Nov 3, 2008, at 10:24 AM, Mike Schrag wrote: I've made Person abstract in the model. I've deleted the redundant EO (AMUserPreference), and UserPreference (which is in the same framework as Person) points to the abstract Person entity. I no longer generate a 'person' table, as I won't

Re: Webobjects-dev Digest, Vol 5, Issue 1061

2008-11-03 Thread shravan kumar
Hello Mike, Should we write some Ajax code surrounding this ERXGoogleSpell API? Or how do we get the staggering list of possible words and opt a word. Please advise. Thank You, Shravan --- On Thu, 10/30/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Re: Spell Check with We

returning another component or page

2008-11-03 Thread Amedeo Mantica
I have this need, I can do it in Java script, but I prefer a server side solutions, I have a boolean flag in my session, if this flag become false (or true) i need to switch all my requests outsite my woapplcation (a redirect) pratically I have to put a redirect in my session. I suppose to

Re: Auto Save form data

2008-11-03 Thread shravan kumar
Thanks for your response David. I was away, so could not reply back soon. I will work on the information provided by you and will post any questions. Thank You, Shravan --- On Thu, 10/30/08, David Avendasora <[EMAIL PROTECTED]> wrote: > From: David Avendasora <[EMAIL PROTEC

Re: Setting up horizontal inheritance

2008-11-03 Thread Mike Schrag
I've made Person abstract in the model. I've deleted the redundant EO (AMUserPreference), and UserPreference (which is in the same framework as Person) points to the abstract Person entity. I no longer generate a 'person' table, as I won't be instantiating Person. That might be a bad id

Re: Question: Best practice for switching db connections as build time

2008-11-03 Thread Miguel Arroz
Hi! You are assuming too much. :) ${Model.DBPassword} and other data come from a properties file that is not on the repository, but on the server. I build my apps on the server itself (it always seemed much more cleaner that doing it on my Mac and uploading) and, during the build proces

Re: Setting up horizontal inheritance

2008-11-03 Thread Ken Anderson
Paul, Could you post the details of the area of your model that's in question? There's obviously something wrong going on...just not easy to decipher without the raw data. Ken On Nov 3, 2008, at 1:30 AM, Paul Hoadley wrote: On 03/11/2008, at 3:59 PM, Chuck Hill wrote: On Nov 2, 2008,

Re: Question: Best practice for switching db connections as build time

2008-11-03 Thread Randy Wigginton
Late to the party here, but most CM & QA groups will not like this approach. Also, SOX groups frown on this practice; it means that all production passwords are in files in the source repository. In general, this should be done with a property file (or other) deployed separately from the r

Re: Setting up horizontal inheritance

2008-11-03 Thread Ken Anderson
On Nov 3, 2008, at 12:29 AM, Chuck Hill wrote: I've made Person abstract in the model. I've deleted the redundant EO (AMUserPreference), and UserPreference (which is in the same framework as Person) points to the abstract Person entity. I no longer generate a 'person' table, as I won't b

Re: Best Strategy for Cacheing

2008-11-03 Thread Oliver Scheel
What is your motivation to use multiple ECs in this case? Because I was running into problems where the saveChanges() was generating errors stating that required toOne and toMany relationships were null and others were pointing to objects that weren't in the DB any longer. I couldn't figur