Re: Handling Session timeout with ajax

2009-01-23 Thread Paul Hoadley
Hi Chuck, On 20/01/2009, at 7:09 AM, Chuck Hill wrote: ... if (AjaxUtils.isAjaxRequest(aContext.request())) { AjaxUtils.redirectTo(errorPage); return errorPage.context().response(); } return errorPage.generateResponse(); Should this al

Re: webobjects installer crashing - SOLVED

2009-01-23 Thread Fred Wells
OK, So re-installing GraphKit.pkg by using Pacifist fixed that issue. It wasn't WebObjects issue. sorry throw it in the wrong list.Don, John thanks for help!Frederick WellsMarketForward, a Publicis Groupe Company427 South LaSalle St.Chicago, Il 60605312.220.3056-John Ours wrote: -To: Fred

why WOActionResults instead of void ?

2009-01-23 Thread Amedeo Mantica
Hello, i see that in action in components thet returns the same page aome users do: public void doSomeThing() { //your stuff } others do: public WOActionResults doSomeThing() { //your stuff return null; } both seem to works equally is there some differ

Re: A tiny bug in AjaxFunctionLink class

2009-01-23 Thread Mike Schrag
ah .. i take it back ... looks like it might be a UI bug in determining required bindings with complex validations. On Jan 23, 2009, at 3:32 PM, Mike Schrag wrote: if you see the available bindings, there are: onclick, but should be onClick ( uppercase 'C' ), is just annoying because is ea

Re: A tiny bug in AjaxFunctionLink class

2009-01-23 Thread Mike Schrag
is just confusive, in other elements binding have C uppercase, just here il lowercase... is possible add a method to accept in both cases? Actually, that's just a pass-through binding to html, and even odder, action is a required binding and you can't bind action and onclick together, which

Re: EOQualifiers

2009-01-23 Thread Mike Schrag
"so simple ?? fantastic ! ;-)" should be the tagline of Wonder :) ms ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://l

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Josh Paul
If anyone has a Nokia N95, you could use Qik... On Jan 23, 2009, at 12:54 PM, Andrew R. Kinnie wrote: Wow. This seems to be getting some momentum. We'll let the list know if we can arrange something for this or some future month(s). On Jan 23, 2009, at 2:13 PM, Kieran Kelleher wrote: Ye

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Andrew R. Kinnie
Well, we have lots of people more than willing to demo that part. . . Dave? On Jan 23, 2009, at 4:03 PM, Ken Anderson wrote: If Mike's doing the demo...it won't pour beer - soft drinks only! On Jan 23, 2009, at 3:54 PM, Andrew R. Kinnie wrote: Wow. This seems to be getting some momentum.

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Ken Anderson
If Mike's doing the demo...it won't pour beer - soft drinks only! On Jan 23, 2009, at 3:54 PM, Andrew R. Kinnie wrote: Wow. This seems to be getting some momentum. We'll let the list know if we can arrange something for this or some future month(s). On Jan 23, 2009, at 2:13 PM, Kieran K

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Andrew R. Kinnie
Wow. This seems to be getting some momentum. We'll let the list know if we can arrange something for this or some future month(s). On Jan 23, 2009, at 2:13 PM, Kieran Kelleher wrote: Yes please :-) Is this even possible to be done? Maybe it just cannot be done? ;-) Now that is somethin

Re: EOQualifiers

2009-01-23 Thread Amedeo Mantica
so simple ?? fantastic ! ;-) thanks you all ! On 23/gen/09, at 20:50, J Stephanos wrote: Try this: EOQualifier qualifier = ERXQ.between(articleDate, date1, date2); ERXQ requires Wonder though (ERExtensions). --JSt On Fri, Jan 23, 2009 at 2:41 PM, Amedeo Mantica > wrote: Hello,

Re: A tiny bug in AjaxFunctionLink class

2009-01-23 Thread Amedeo Mantica
is just confusive, in other elements binding have C uppercase, just here il lowercase... is possible add a method to accept in both cases? Regards Amedeo On 23/gen/09, at 21:32, Mike Schrag wrote: if you see the available bindings, there are: onclick, but should be onClick ( uppercase 'C'

Re: A tiny bug in AjaxFunctionLink class

2009-01-23 Thread Mike Schrag
if you see the available bindings, there are: onclick, but should be onClick ( uppercase 'C' ), is just annoying because is easy to mistake. can you check? This should be on the Wonder list. There seems to be a lot of inconsistency in the use between onclick and onClick. But changing it n

Re: EOQualifiers

2009-01-23 Thread Ken Anderson
Sorry - Entity.EntityName should have been Entity.AttributeName ! On Jan 23, 2009, at 2:56 PM, Ken Anderson wrote: or for those who are Wonder-less: EOKeyValueQualifier startQ = new EOKeyValueQualifier(Entity.EntityName, EOQualifier.QualifierOperatorGreaterThanOrEqualTo, startDate); EOKey

Re: EOQualifiers

2009-01-23 Thread David Avendasora
The standard way: EOQualifier lowerQual = new EOKeyValueQualifier("articleDate", EOQualifier.QualifierOperatorGreaterThanOrEqualTo, startDate); EOQualifier upperQual = new EOKeyValueQualifier("articleDate", EOQualifier.QualifierOperatorLessThanOrEqualTo, endDate); NSMutableArray qualifiers =

Re: EOQualifiers

2009-01-23 Thread Ken Anderson
or for those who are Wonder-less: EOKeyValueQualifier startQ = new EOKeyValueQualifier(Entity.EntityName, EOQualifier.QualifierOperatorGreaterThanOrEqualTo, startDate); EOKeyValueQualifier endQ = new EOKeyValueQualifier(Entity.EntityName, EOQualifier.QualifierOperatorLessThanOrEqualTo, endD

Re: EOQualifiers

2009-01-23 Thread Mike Schrag
Try this: EOQualifier qualifier = ERXQ.between(articleDate, date1, date2); ERXQ requires Wonder though (ERExtensions). it's not magical, though ... just "articleDate >= date1 and articleDate <= date2" (or whatever your inclusive/exclusive rules are. ms _

Re: EOQualifiers

2009-01-23 Thread J Stephanos
Try this: EOQualifier qualifier = ERXQ.between(articleDate, date1, date2); ERXQ requires Wonder though (ERExtensions). --JSt On Fri, Jan 23, 2009 at 2:41 PM, Amedeo Mantica wrote: > Hello, > > does anyone know hot to build a quelifier for looking up an item in a Date > range? > > I

EOQualifiers

2009-01-23 Thread Amedeo Mantica
Hello, does anyone know hot to build a quelifier for looking up an item in a Date range? I have a table of Articles, and I need to select a range by articleDate I tried but I was unable to build a working qualifier Regards Amedeo ___ Do not post

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Mike Schrag
maybe wowodc should do "satellite broadcasts" throughout the year ms On Jan 23, 2009, at 2:13 PM, Kieran Kelleher wrote: Yes please :-) Is this even possible to be done? Maybe it just cannot be done? ;-) Now that is something worthwhile for a video podcast. On Jan 23, 2009, at 12:12 PM, H

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Kieran Kelleher
Yes please :-) Is this even possible to be done? Maybe it just cannot be done? ;-) Now that is something worthwhile for a video podcast. On Jan 23, 2009, at 12:12 PM, Hugi Thordarson wrote: What's the URL for the webcast? O:-) - hugi On 23.1.2009, at 15:33, Andrew R. Kinnie wrote: Gre

Deaths = broken pipe?

2009-01-23 Thread Kieran Kelleher
On one slow G4 xserve, I have had situation about once month whereby I get an email (presumably from wotaskd) from the specific server reporting one or two "Deaths" on an instance running on that machine. I look at the time of the email and compare that to the logs, I don't see the usual s

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Hugi Thordarson
What's the URL for the webcast? O:-) - hugi On 23.1.2009, at 15:33, Andrew R. Kinnie wrote: Greetings all! For anyone finding themselves in Northern Virginia next Tuesday with insatiable itch to talk WebObjects, YOU'RE IN LUCK! The WO-Nova monthly meeting is scheduled for 6:30 PM at K1

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Andrew R. Kinnie
It's ALL about the integration. . . On Jan 23, 2009, at 10:53 AM, David Avendasora wrote: On Jan 23, 2009, at 10:33 AM, Andrew R. Kinnie wrote: There will also no doubt be something fabulous that will let you build a complete application in five minutes, Yep. It's call Direct to Java Clie

Re: MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread David Avendasora
On Jan 23, 2009, at 10:33 AM, Andrew R. Kinnie wrote: There will also no doubt be something fabulous that will let you build a complete application in five minutes, Yep. It's call Direct to Java Client. Feed it a model, instant App. Sweet. while it pours you a beer and does the laundry.

MEETING - WO-Nova NEXT TUESDAY 1/27/09

2009-01-23 Thread Andrew R. Kinnie
Greetings all! For anyone finding themselves in Northern Virginia next Tuesday with insatiable itch to talk WebObjects, YOU'RE IN LUCK! The WO-Nova monthly meeting is scheduled for 6:30 PM at K12 2300 Corporate Park Drive Herndon, VA 20171 As usual, food will be provided, and drinks are sub

Re: last chance for stable

2009-01-23 Thread Mike Schrag
The devil is in the details. I just read BigDecimal without focusing on the package. you and me both, since I caused your problem in the first place ... ms ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: last chance for stable

2009-01-23 Thread Henrique Prange
Hi Mike, The devil is in the details. I just read BigDecimal without focusing on the package. Thanks again and +1 for the stable release. Cheers, Henrique Mike Schrag wrote: "java.lang.IllegalStateException: adaptorValueType: unable to load class named 'java.lang.BigDecimal' for attribute

Re: Large number of sessions creating in WO appliations

2009-01-23 Thread Lachlan Deck
Any reason why you keep sending the same message some five times now? A similar question was asked and answered in the recent thread titled "Instances Tuning for High Transactional Sessions" on the deployment list. From Chuck's answer: 2) Your code has a bug that is preventing sessions fro