Re: EditingContext Newbiee Question

2008-08-02 Thread Jeff Schmitz
Hi Dave, Regarding your comments on ERXEC (which I am using in all my EO's, or at least all my EO's extend ERXGenericRecord): I always create new ECs for any task that is going to require editing. Using Project Wonder's ERXEC makes this particularly painless as it handles the necessary

Re: EditingContext Newbiee Question

2008-08-02 Thread Gustavo Pizano
Ok so let's say I have this try { session().defaultEditingContext().saveChanges(); } catch (ValidationException e) { setErrorMsgs(e.getMessage()); } catch (EOGeneralAdaptorException e) {

com.webobjects.appserver.WOApplication opening?

2008-08-02 Thread Gustavo Pizano
Hello, Again when running the tutorial im doing, and clicking the submit button the com.webobjects.appserver.WOApplication opens as a java application, I dont rememebr thgis to be happening before, am I doing something bad? regards Gustavo ___

ant for embedding projects

2008-08-02 Thread Florijan Stamenkovic
Hi all, Not a question... I've been playing around with modifying the ant described in: http://wiki.objectstyle.org/confluence/display/WOL/Embedding +WOFrameworks Primarily I wanted to get rid of having to declare project dependencies in build.xml files, coz that's just dirty. So, what

WOText Escape HTML Broken?

2008-08-02 Thread Mr. Frank Cobia
The escapeHTML binding has not effect on WOText (or ERXWOText). Is this the way it is supposed to behave or is it broken. I am using WO 5.4.2 on Mac OS. As a follow up question, whether it is broken or not, is there a way for me to create a textarea without the HTML being escaped? All I am

Re: WO5.4 Web Services - Application not responding

2008-08-02 Thread Chandrashekhar Tupe
Hi David,To make sure of this I ran sample self contained WO 5.4 WebObjects Hello World Application and didnt get any issue accessing the same.Thread dump while accessing the web service application.WorkerThreadsare "waiting for monitor entry" per this.Full thread dump Java HotSpot(TM) Server VM

Re: EditingContext Newbiee Question

2008-08-02 Thread Lachlan Deck
On 02/08/2008, at 11:46 PM, Jeff Schmitz wrote: Hi Dave, Regarding your comments on ERXEC (which I am using in all my EO's, or at least all my EO's extend ERXGenericRecord): I always create new ECs for any task that is going to require editing. Using Project Wonder's ERXEC makes this

Re: EditingContext Newbiee Question

2008-08-02 Thread Lachlan Deck
Hi Gustavo, On 03/08/2008, at 12:37 AM, Gustavo Pizano wrote: Ok so let's say I have this try { session().defaultEditingContext().saveChanges(); } catch (ValidationException e) {