Re: [ANN] Multiple ECs blog post

2008-10-20 Thread WebObjects
Hey david, thanks for the post, now i understand some of the things I did last days, following the advise of the people form the list, I will take care using multiple EC. thx Gus On Oct 20, 2008, at 9:48 PM, Jeff Schmitz wrote: GREAT writeup Dave. Confirmed a lot of things for me, and op

WODisplay stringQualifierOperators

2008-10-20 Thread Jerome Chan
I've tried constructing a EOQualifier with the string "name starts with 'P'" and am trying to use that on my WODisplay object but it returns an empty list. When I use all the other stringQualifierOperators except for "contains" I get empty results. When I use "contains" I get the expected r

Re: [ANN] Multiple ECs blog post

2008-10-20 Thread Jeff Schmitz
GREAT writeup Dave. Confirmed a lot of things for me, and opened my eyes on a few others. Only thing I can think of that you might add is something about performance issues (or why there really aren't any if that's the case) of having a lot of different editing contexts. Since WO has to

Re: Error installing jadclipse

2008-10-20 Thread Q
This can happen if you somehow manage to install the WOLips Apple Maven integration plugin without also having m2eclipse installed. Try and uninstall the apple maven plugin and see if the error goes away. On 21/10/2008, at 4:07 AM, JR Ruggentaler wrote: I was trying to install jadclipse f

Re: ERXExtensions have not been initialized

2008-10-20 Thread M.Y. Tjoe
That's correct. It is calling super() and it's super()and nothing seems to be wrong in the code. Thanks for the tips. I've got a fresh copy from cvs and it working fine now. I'll look into the info.plist to see if I can spot anything strange. Regards, Harvey On 21/10/2008, at 3:55 A

Re: Custom hyperlink

2008-10-20 Thread Ramsey Gurley
Looking at the binding reference http://developer.apple.com/documentation/WebObjects/Reference/DynamicElements/WOGenericContainer/chapter_15_section_3.html It would appear you need to do something like: Back : WOGenericElement { elementName = "a"; invokeAction = goBack;

Re: Custom hyperlink

2008-10-20 Thread Jim Roepcke
Try this: Back : WOHyperlink { action = goBack; id = "backButton"; } Jim On Mon, Oct 20, 2008 at 3:58 PM, Shaft <[EMAIL PROTECTED]> wrote: > Hi WO Masters, > How can I create a custom WOHyperlink to generate that kind of tag? > Back > > I tried with a WOGenericElement but it does not wor

Custom hyperlink

2008-10-20 Thread Shaft
Hi WO Masters, How can I create a custom WOHyperlink to generate that kind of tag? Back I tried with a WOGenericElement but it does not work Back : WOGenericElement { elementName = "a"; action = goBack; id = "backButton"; } Thanks Shaft - Junior WO junky... _

Re: Fetch specification error in WO 5.4.3

2008-10-20 Thread JR Ruggentaler
Figured it out: the Entity had an entry: sharedObjectFetchSpecificationNames = (FetchAll); { attributes = ( { columnName = "FAMILY_ID"; externalType = NUMBER; name = familyID; valueClassName = NSNumber; valueType = i;

Re: mod_rewrite and AjaxUpdateLink drives me crazy

2008-10-20 Thread Chuck Hill
On Oct 20, 2008, at 1:07 PM, Helmut Schottmüller wrote: Hi Chuck, thanks! I will try that. I'm not sure why this stupid new session is being created :-( I don't know either, but that is a good way to track it down. But since I figured out that I can rewrite my URL's using the rewriteUR

Re: mod_rewrite and AjaxUpdateLink drives me crazy

2008-10-20 Thread Helmut Schottmüller
Hi Chuck, thanks! I will try that. I'm not sure why this stupid new session is being created :-( But since I figured out that I can rewrite my URL's using the rewriteURL method in ERXApplication even with wotaskd I have no pressure to move to Tomcat. The only reason I did that was that I

Re: autoReconnect=true, is it OK?

2008-10-20 Thread Robert Walker
I use that option on all my apps, I've not seen any problems using it and it does eliminate the stale connections issue with MySQL. I think the default stale connection timeout is 8 hours. I was thinking that this was no longer an issue in more recent versions of MySQL, but I could be wron

Re: autoReconnect=true, is it OK?

2008-10-20 Thread Chuck Hill
On Oct 20, 2008, at 12:17 PM, Greg Smith wrote: I seem to be getting exceptions when trying to save to a MySQL table. It happens only occasionally and the log indicates I should turn autoReconnect=true. Does anyone know if this will cause other problems with EOF? Is there a better way?

Re: Strategic advice

2008-10-20 Thread Lachlan Deck
On 21/10/2008, at 3:20 AM, Gordon Belray wrote: I'm sure I'll have more questions. BTW, for adding images to WebServerResources, I found a nice short-cut, simply copy the image file and paste it to the folder in Eclipse, this was the only way I could actually get it to work, I tried to cont

autoReconnect=true, is it OK?

2008-10-20 Thread Greg Smith
I seem to be getting exceptions when trying to save to a MySQL table. It happens only occasionally and the log indicates I should turn autoReconnect=true. Does anyone know if this will cause other problems with EOF? Is there a better way? Thanks. I am now using this in the model: jdbc:my

Fetch specification error in WO 3.4.3

2008-10-20 Thread JR Ruggentaler
I am trying to get my projects working with WO 3.4.3 (works with WO 3.3) but I keep getting the following exception. Caused by: java.lang.IllegalArgumentException: Fetch specification cannot be null and cannot fetch raw rows at com .webobjects .eocontrol .EOSharedEditingContext .bindOb

Re: Error installing jadclipse

2008-10-20 Thread Mike Schrag
Any ideas? "doing something wrong"? jad doesn't depend on anything .. so somehow you're selecting something else in that first screen. ms ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects

Error installing jadclipse

2008-10-20 Thread JR Ruggentaler
I was trying to install jadclipse from http://webobjects.mdimension.com/jadclipse/3.3 and got the following error. Cannot complete the request. See the details. Cannot complete the request. See the details. Unsatisfied dependency: [org.objectstyle.wolips.apple.mavenintegration 3.4.5503]

Re: do you want to blow your mind?

2008-10-20 Thread Mike Schrag
Mike, kind of off topic, but how is this "new type of component" coming along? is it something you'll commit to Wonder? As a complete coincidence, we wanted just such a component on Friday afternoon :) past tense ... I committed it before I wrote that email, actually. ERXEmbeddedPage and ERX

Re: mod_rewrite and AjaxUpdateLink drives me crazy

2008-10-20 Thread Chuck Hill
Try adding this to your Session constructor: NSLog.out.appendln(new RuntimeException("Session created here")); Chuck On Oct 18, 2008, at 8:15 PM, Helmut Schottmüller wrote: Hi folks, I am successfully using my Wonder app with Tomcat 5.5 and Apache mod_rewrite in Apache 2.2. I added a rewri

Re: do you want to blow your mind?

2008-10-20 Thread Dan Grec
On 18-Oct-08, at 8:52 AM, Mike Schrag wrote: All of this finagling on my part was because I wanted to implement a new type of component that would allow you to, for instance, create a component on your page that would act like an "embedded page," where instead of having the result of invokeA

Re: ERXExtensions have not been initialized

2008-10-20 Thread Chuck Hill
On Oct 20, 2008, at 3:36 AM, David Avendasora wrote: What is at line 76 of your application? at edu.uow.ris.application.Application.(Application.java:76) super(); :-) Try actually reading the error message: ERXExtensions have not been initialized. Please report the classpath a

Re: Strategic advice

2008-10-20 Thread Gordon Belray
Hi Mike, On 20-Oct-08, at 10:48 AM, Mike Schrag wrote: Is WO 5.4.2 or 5.4.3 stable enough for dev and deployment work, or is WO 5.3.3 on OSX 10.5 a better option (using Mike Schrag's excellent tutorial)? We just moved to 5.4.3 in production. 5.4.3 seems to be pretty good. We are still 5.3 i

Re: [OT] Is there any WebObjects folder icon?

2008-10-20 Thread WebObjects
Well there is this Gear image in apple webobjects suppourt page, you will have to photoshop it, and and the with icon composer create it, Im trying to do it right now, let me see what can I do, the other option its to google it. Gus On Oct 20, 2008, at 9:58 AM, Yung-Luen Lan wrote: Won

[OT] Is there any WebObjects folder icon?

2008-10-20 Thread Yung-Luen Lan
Wondering if there is any cool {webobjects, WOLips, Wonder} folder icon for Mac OS X. You know, it will be fun if your webobjects-related folder have neat icon rather than plain folder. Regards, yllan ___ Do not post admin requests to the list. They wi

Re: Strategic advice

2008-10-20 Thread Mike Schrag
Is WO 5.4.2 or 5.4.3 stable enough for dev and deployment work, or is WO 5.3.3 on OSX 10.5 a better option (using Mike Schrag's excellent tutorial)? We just moved to 5.4.3 in production. 5.4.3 seems to be pretty good. We are still 5.3 in production, but are planning very soon to move to 5.4

Re: Strategic advice

2008-10-20 Thread Guido Neitzer
On 20.10.2008, at 08:19, Gordon Belray wrote: sorry to trouble you guys with this, but we're scrambling to get a new production/deployment environment together after a significant power outage that corrupted our main production server. We're still running XCode 2.4, OS X 10.4.11, WebObjects

Strategic advice

2008-10-20 Thread Gordon Belray
Hi, sorry to trouble you guys with this, but we're scrambling to get a new production/deployment environment together after a significant power outage that corrupted our main production server. We're still running XCode 2.4, OS X 10.4.11, WebObjects 5.3.3 but have a new XServe running 10.

Re: do you want to blow your mind?

2008-10-20 Thread Mike Schrag
Chuck and I just did, so I thought I'd share it ... jad WOSwitchComponent and I hope I'm not hijacking your thread with this question, but does the 3.3 version of Jadclipse work with Eclipse 3.4.1? If not, what Jad tool are you using? It works on 3.4. ms __

Re: ERXExtensions have not been initialized

2008-10-20 Thread David Avendasora
What is at line 76 of your application? at edu.uow.ris.application.Application.(Application.java:76) Dave On Oct 20, 2008, at 12:56 AM, tjoe wrote: Hi all, I got the following exception when start up but don't think I have made any changes to it since last run. Anyone got any ide