Re: WOBiking

2008-10-02 Thread Guido Neitzer
On 2-Oct-08, at 3:31 PM, Mike Schrag wrote: I' am not a member of this sect... but, it is WO-Based, a far as I can tell from the url. http://www.wwag.com/ I periodically do a google search for "inurl:/cgi-bin/ WebObjects" ... Sometimes interesting. Unfortunately URL rewriting is too simple

Re: WOBiking

2008-10-02 Thread Mike Schrag
I' am not a member of this sect... but, it is WO-Based, a far as I can tell from the url. http://www.wwag.com/ I periodically do a google search for "inurl:/cgi-bin/WebObjects" ... Sometimes interesting. ms ___ Do not post admin requests to the li

WOBiking

2008-10-02 Thread Jean Pierre Malrieu
I' am not a member of this sect... but, it is WO-Based, a far as I can tell from the url. http://www.wwag.com/ JPM Tout ce que l'on apprend à un enfant, on l'empêche de l'inventer ou de le découvrir. J. Piaget ___ Do not post admin requests to th

WebObjects Training in November

2008-10-02 Thread Guido Neitzer
[Unwanted Advertisement below :-)] Hi All, I am going to teach another Real-World WebObjects Bootcamp at Big Nerd Ranch Europe near Frankfurt, Germany, November 10-14, 2008. If you are interested in attending or know someone who is, you probably don't want to miss the Big Nerd Ranch's earl

Re: ClassCastException???

2008-10-02 Thread David LeBer
OK, still some misunderstandings: The 'item' bindings on a WOPopup (and WORepetition) needs to be bound to an instance of the type of object that is contained in array bound to the 'list' binding. As the WOPopup iterates through the array, it places the current array object into that instan

Re: Question about search performance

2008-10-02 Thread Ken Anderson
Josh, Can you please tell us what the outcome was of this? Ken On Sep 16, 2008, at 1:35 PM, Joshua Dubey wrote: Hi, I am seeing some search performance behavior I don't understand and am hoping someone can provide some insight. We have an application that searches a very large table (mil

Re: ClassCastException???

2008-10-02 Thread Guido Neitzer
On 2-Oct-08, at 10:55 AM, David LeBer wrote: On 2-Oct-08, at 12:46 PM, Guido Neitzer wrote: On 2-Oct-08, at 10:37 AM, Awbrey Hughlett wrote: The Basic and Specific EOs are linked to WOPopUpButtons. I want the selection value (bound to aBasic and aSpecific) to be added to the new instance

Re: ClassCastException???

2008-10-02 Thread Awbrey Hughlett
The relationship from Basic to Listing is to-many. There are only a few Basic objects, but many more Listing objects. I want to tie a particular Listing to a Basic type. Awbrey On Oct 2, 2008, at 11:55 AM, David LeBer wrote: On 2-Oct-08, at 12:46 PM, Guido Neitzer wrote: On 2-Oct-08, at

Re: ClassCastException???

2008-10-02 Thread David LeBer
On 2-Oct-08, at 12:46 PM, Guido Neitzer wrote: On 2-Oct-08, at 10:37 AM, Awbrey Hughlett wrote: The Basic and Specific EOs are linked to WOPopUpButtons. I want the selection value (bound to aBasic and aSpecific) to be added to the new instance of a Listing EO. I figured I didn't want a ne

Re: ClassCastException???

2008-10-02 Thread Guido Neitzer
On 2-Oct-08, at 10:37 AM, Awbrey Hughlett wrote: The Basic and Specific EOs are linked to WOPopUpButtons. I want the selection value (bound to aBasic and aSpecific) to be added to the new instance of a Listing EO. I figured I didn't want a new object on both sides of the relationship since

Re: ClassCastException???

2008-10-02 Thread Johann Werner
Hi Awbrey, I suppose the Listing, Basic and Specific are all EOs? Then you can't create new objects of them by just instantiating them the java way. You have to tell WO to create them by using EOUtilities.createAndInsertInstance(EOEditingContext ec, String entityName) This inserts a new

Re: ClassCastException???

2008-10-02 Thread Guido Neitzer
On 2-Oct-08, at 10:04 AM, Awbrey Hughlett wrote: I am getting a classCastException from this when I invoke saveChanges(). What am I doing wrong again? First providing pretty unreadable stacktraces, second not looking at the exact line where that is given to you in the stacktrace, third mi

Re: ClassCastException???

2008-10-02 Thread Awbrey Hughlett
The Basic and Specific EOs are linked to WOPopUpButtons. I want the selection value (bound to aBasic and aSpecific) to be added to the new instance of a Listing EO. I figured I didn't want a new object on both sides of the relationship since aBasic and aSpecific already have values set by

Re: ClassCastException???

2008-10-02 Thread David LeBer
On 2-Oct-08, at 12:04 PM, Awbrey Hughlett wrote: I am getting a classCastException from this when I invoke saveChanges(). What am I doing wrong again? public class DataEntry extends WOComponent { private Listing listing = new Listing(); private Basic basic = new Basic();

ClassCastException???

2008-10-02 Thread Awbrey Hughlett
I am getting a classCastException from this when I invoke saveChanges (). What am I doing wrong again? public class DataEntry extends WOComponent { private Listing listing = new Listing(); private Basic basic = new Basic(); private Specific specific = new Specific();

Re: Latest wonder ajax resources causes severe slowdown under tomcat REPOST from Wonder list

2008-10-02 Thread William Hatch
I ended up creating a Properties.tomcat file, identical to the main Properties file with the exception of WODirectConnectEnabled=false That seems to have made this problem go away. Man... Thanks guys. On Oct 1, 2008, at 9:20 PM, Guido Neitzer wrote: On 1-Oct-08, at 6:50 PM, William Hatch wr

Re: Ajax loading with subcomponents

2008-10-02 Thread Helmut Schottmüller
Hi Kieran, cool, thanks a lot! Regards, Helmut Am 02.10.2008 um 12:47 schrieb Kieran Kelleher: ERXResponseRewriter class has the static methods you need. Just see that class (or the API if you dont have the source in your workspace) Just override appendToResponse, call super and then the

Re: Ajax loading with subcomponents

2008-10-02 Thread Kieran Kelleher
ERXResponseRewriter class has the static methods you need. Just see that class (or the API if you dont have the source in your workspace) Just override appendToResponse, call super and then the appropriate ERXResponseRewriter methods to insert javascript, css, etc. in head. On Oct 2, 2008,

Ajax loading with subcomponents

2008-10-02 Thread Helmut Schottmüller
Hi, is there an existing solution by now to support the loading of subcomponent resources in the head after an AJAX request? I need the appendToResource code of my subcomponent executed e.g. when a TabbedPanelTab changes. Regards, Helmut ___ Do n