Re: WOText Bigger than 255

2007-03-08 Thread Dave Elsner
Hi, The limitation of 255 characters is most likely the limit specified for that columns width in the database and EOModel. If that still doesn't fix it it will be the maxlength property set on the WOTextfield which you can increase to whatever size you want. Regards Dave On 09/03/2007

SQL update position

2007-03-08 Thread Ian Joyner
I have just found that the statement: UPDATE SET POSITION = gives the error: SQL ERROR - [position 13, near '' in 'ATE MEMBER SET POSITION ='] update error: SET expected but not found. The following works: UPDATE SET OTHER_FIELD = >value>, POSITION = Seems that POSITION is a reserved

WOText Bigger than 255

2007-03-08 Thread John Shepardson
Hi, Yet another very easy question from a guy named John. For the last year I have been using WOTextfield and WOTextAreas in my forms with no problems. Just set the attribute "value" to have a binding of a method that returns a java string. Easy as cake. Now I am a bit stuck trying to get text

Making a WO Project dependent on a WO Framework Project

2007-03-08 Thread Michael Scott
I'm having difficulty working out how to make an Xcode WO project depend upon a WO Framework project. Could anyone help? I have a WO framework project and two application projects (a survey system and a booking system) that use the framework. Up until now, I've been developing and deploying the

Re: WOComponent quesion

2007-03-08 Thread Peter Vandoros
Hi Jerry, Thanks a lot for that explanation. It makes sense now. I know now why i have never been bitten by that situation because i always /"return this;/" if i know it is the "page" component. Thanks Peter Jerry W. Walker wrote: Hi, Peter, It's so seldom that I can ding Chuck, I just co

Getting information on updated n:m relationship

2007-03-08 Thread Guido Neitzer
Hi. Where is the best (easiest) point to get information for updates on a flattened n:m relationship that is represented by a simple join table (EOGenericRecord)? Like when such an object is added or deleted from the database. There seems to be nothing about it in the insertedObjects or d

Re: WOComponent quesion

2007-03-08 Thread Jerry W. Walker
Hi, Peter, It's so seldom that I can ding Chuck, I just couldn't let the opportunity pass. :-) Actually, this method exists for situations in which component B has a reference to component A (where A is probably the page that passed control to B, but not necessarily). If B renders its pa

Re: WOComponent quesion

2007-03-08 Thread Peter Vandoros
Does this method need to be called if the component does not do any initialisation in awake() ? Or does WO do some things that are required? Why exactly we need to call this method? I have not been using this method anywhere and i have not encountered any issues that i am aware of. Regards

Re: Corrupt Nib file?

2007-03-08 Thread Ian Joyner
I seem to have fixed this. The step before I got rid of the hang was to open the offending Nib, not from Xcode, but from Finder. Of course I got a lot of things not connected or found, but IB was not hanging up when I clicked on the display groups. So I saved it, and back in Xcode it now wo

WebObjects 5: Updating time zone data

2007-03-08 Thread Mr. Pierre Frisch
For those that have not yet changed their code for the DST change this week-end, Apple posted a new KBase article, WebObjects 5: Updating time zone data (). Pierre -- Pierre Frisch [EMAIL PROTECTED] _

Re: WebObjects 5.3.3, DST and J2SE 1.4.2, parse javascript help

2007-03-08 Thread Wilson Lee
Option 1, put the document.write inside of your form component. You'll see the value in the request and won't need the WOHiddenField. var now = new Date(); var clientTimeZoneOffset = now.getTimezoneOffset(); ... document.write('value="' + clientTimeZoneOffset * 60 * -1 + '" />');

Re: WebObjects 5.3.3, DST and J2SE 1.4.2, parse javascript help

2007-03-08 Thread Baiss Eric Magnusson
I'm working with your below code, many thanks. The part that has stumped me is header> I create a WOHiddenField in the WOForm, ( I do know the javascript is loading and being called ) HiddenFld_TimeZone: WOHiddenField { name = "x-clientTimeZoneOffset"; value = timeZoneJS; }

Re: WOComponent quesion

2007-03-08 Thread Chuck Hill
You are correct. Strictly speaking, it is only needed in that case. I tend to engage in a bit of PBP (Paranoia Based Programming) when I am not sure who is going to use the code. Better safe than hunting bugs. Chuck On Mar 8, 2007, at 3:08 AM, Jerry W. Walker wrote: Hi, Timo & Chuck,

Re: SSL certificates

2007-03-08 Thread Kieran Kelleher
Hi Bruno, If you can, keep the discussion threads on the mailing list:-) The brainpower of the collective community is far greater than my own limited understanding and besides, I may be swamped at work and not have the liberty to reply to direct questions! Not sure what your issues a

Re: Javamonitor help - FIXED

2007-03-08 Thread James Cicenia
Well - It has been three consecutive days without a problem! It looks as though this bit of code did the trick. Before this code, every morning javamonitor would be stuck because of one bad instance. So far no problems and I am now sleeping much better, let alone not being obsessed with c

Re: SSL certificates

2007-03-08 Thread Kieran Kelleher
In addition to what Mike S said, here is instructions on setting it up on the same server, same physical network cable. http://homepage.mac.com/kelleherk/iblog/C463983418/E20061206152340/ index.html On Mar 8, 2007, at 3:25 AM, WIESEN Bruno wrote: Hello, I have two WebObjects applications us

Re: SSL certificates

2007-03-08 Thread Mike Schrag
You can only have one SSL cert per IP, so you would need to do IP- based virtual hosting on your machine and then set the cert for each Apache site. ms On Mar 8, 2007, at 3:25 AM, WIESEN Bruno wrote: Hello, I have two WebObjects applications using SSL on the same server, is there a way t

Re: WOComponent quesion

2007-03-08 Thread Jerry W. Walker
Hi, Timo & Chuck, My understanding was that ensureAwakeInContext(context()) is only needed if you are going to invoke methods on the previous page, not if you are just going to return it, as in this example. Regards, Jerry On Mar 8, 2007, at 3:44 AM, Timo Hoepfner wrote: Am 07.03.2007 u

Re: WOComponent quesion

2007-03-08 Thread Timo Hoepfner
Am 07.03.2007 um 18:52 schrieb Chuck Hill: previousPage.ensureAwakeInContext(context()); return previousPage; You learn something new every day... I've never noticed the ensureAwakeInContext mehod and have been returning pages stored in a variable for years now without a problem.

SSL certificates

2007-03-08 Thread WIESEN Bruno
Hello, I have two WebObjects applications using SSL on the same server, is there a way to assign a certificate to a specific application? With WebObjects?With something else? Thank you. Bruno. ___ Do not post admin requests to the list. They will b