Re: JDBCChannel method failed to update

2006-07-26 Thread Anjo Krank
Am 27.07.2006 um 04:31 schrieb Corin Lawson: I have removed locking from all but the primary key from the entity and this has remedied the problem. But I am concerned that this is not correct and may cause other problems. It is not possible for the this error to be handled by the user beca

Re: EOObjectNotAvailableException

2006-07-26 Thread Anjo Krank
Am 25.07.2006 um 17:20 schrieb Watkins, Garry: Really not the answer that I wanted. Personally, I think that it is a bug in EO, if the relationship is defined as NOT mandatory, and it encounters a EOObjectNotAvailableException it should return null. However, I want to continue to use EOGeneric

Direct Action vs. Component Action...

2006-07-26 Thread Deepak Nulu
Hi, The first part of David LeBer's articles on Direct Actions (http:// david.codeferous.com/?p=63) says the following about component actions: "each visitor will receive a relatively heavyweight Session object, so they may not be appropriate if you expect a lot of visitors and/or you

Re: JDBCChannel method failed to update

2006-07-26 Thread Corin Lawson
Hi, Thanks to everyone who replied. I have removed locking from all but the primary key from the entity and this has remedied the problem. But I am concerned that this is not correct and may cause other problems. It is not possible for the this error to be handled by the user because it oc

Re: EOObjectNotAvailableException

2006-07-26 Thread Ken Anderson
EOF looks at it a different way, and I can understand their approach.  If you had a foreign key to the other table in your table, and it was NULL, then it's ok if the relationship is not mandatory.  In their eyes, since you happen to use the same primary key for both objects, it figures it MUST be

Re: WWDC WO Meet Up List

2006-07-26 Thread Chuck Hill
On Jul 26, 2006, at 2:19 PM, Joe Little wrote: On 7/25/06, Ken Anderson <[EMAIL PROTECTED]> wrote: I would like to request that everyone wear their WWDC badges at The Thirsty Bear so that we can figure out who everyone is! Ken It will also be helpful for me to collect money :) I have note

Re: Direct to Web Services Caching Problem

2006-07-26 Thread Chuck Hill
On Jul 26, 2006, at 5:28 PM, Xia, Wen wrote: Hi all, Recently I created a Direct to Web Service application, and used WebServiceAssistant to add services and operations. There is absolutely no coding and it works great until the following problem occurred: Even though I added "-WOCachingEn

Direct to Web Services Caching Problem

2006-07-26 Thread Xia, Wen
Hi all, Recently I created a Direct to Web Service application, and used WebServiceAssistant to add services and operations. There is absolutely no coding and it works great until the following problem occurred: Even though I added "-WOCachingEnabled NO" for the web service instance, it still som

Re: Re: Web Services - A newbie

2006-07-26 Thread Roy
Hi Mike, Thanks a lot for the help. I really got a starting point. But I am having a strange problem, I followed to the point where a provider was asked to setup. I did what was there exactly but then I tried to access my server after sytarting to get the WSDL document it simply throws up a blank

Re: Re: WWDC WO Meet Up List

2006-07-26 Thread Joe Little
On 7/25/06, Ken Anderson <[EMAIL PROTECTED]> wrote: I would like to request that everyone wear their WWDC badges at The Thirsty Bear so that we can figure out who everyone is! Ken It will also be helpful for me to collect money :) So, we now have three dishes of food and 79 people. Still just

Newbie : Where can i find the source code for the examples in George Ruzek Book ?

2006-07-26 Thread Gilles MATHURIN
Hi all Has someone kept the example source code and other solution of the Web application Construction kit Book, by George Ruzek. Unfortunately the companion website is not available anymore, it seems (www.wowack.com). Thanx ___ Do not post admin

Re: Newbie JavaScript Question

2006-07-26 Thread David Holt
Hi Mike,There are a number of things you can do. You can include the script in the head section of the page where you want to call it. You can include it in a page template. You can include your script as a WebServer resource and bind it to WOJavaScript (you can find this on the palette in WOBuilde

Newbie JavaScript Question

2006-07-26 Thread Chip Myers
Hi, I'm trying to incorporate some _javascript_ into my webobjects file.  Can anyone point me to a good tutorial for doing this?Thanks, Mike ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobj

undo manager is in invalid state

2006-07-26 Thread David Avendasora
Hi all,I'm getting the following error when trying to delete an object in a Direct To Java Client application:[2006-07-26 10:07:15 EDT] : Exception occurred while handling request:java.lang.IllegalStateException: undo: undo manager is in invalid state, undo was called with too many nested undo gro

Re: WOIFrame Question

2006-07-26 Thread Jan Grathwohl
Hi Mike, we use JavaScript to do this. Put a function in the page containing the iframe that will set the height of the frame: function setFrameHeight(height) { document.getElementById('theframe').height = height; } and then call this function from the page