A success story

2007-06-11 Thread Georg Tuparev
WWDC times, rumor times :-) No, folks, I am not starting yet another death of WO prediction. We had enough of them in the past. In contrary, for the folks that so often ask questions if it is worth starting to learn WO I'd like to write few encouraging words by describing how much our team was

Re: Post WWDC Plans for Monday Night?

2007-06-11 Thread Karl Gretton
Bumped into Chuck in the hallway and we suggested The Thirsty Bear which is a few meters down the street from Chevys where we were last night. How does that sound to everyone? Karl On 11 Jun 2007, at 19:13, Owen McKerrow wrote: Hi All, Speaking of ber Im not at WWDC but thought I wo

Re: Post WWDC Plans for Monday Night?

2007-06-11 Thread Owen McKerrow
Hi All, Speaking of ber Im not at WWDC but thought I woudl hijack this thread for a second. From reading the WWDC site it looks like that the Apple Campus Beer Bash isn't happening this year i.e. its changing venue. they describe it as... WWDC Bash in San Francisco You’ve been hard

Re: Comparing arrays

2007-06-11 Thread Michelle Parker
Hi all Thanks for all the suggestions. Hope you're having a great time at WWDC! Wish I was there, but I'm working on Parker v3 :-) The solutions I ended up using was to use rawRowsMatchingKeyAndValue which returns Integers instead of Longs. Chuck, that's an interesting idea to control th

Re: Post WWDC Plans for Monday Night?

2007-06-11 Thread Alan Ward
I suggest you all come down to Cupertino so that I don't have drive up to the city ;-) Alan On Jun 11, 2007, at 7:35 PM, Guido Neitzer wrote: Am 11.06.2007 um 13:14 schrieb Chuck Hill: Any plans for tonight? The welcome event is usually over (out of beer ;-) quickly. Make a suggestio

Re: Post WWDC Plans for Monday Night?

2007-06-11 Thread Guido Neitzer
Am 11.06.2007 um 13:14 schrieb Chuck Hill: Any plans for tonight? The welcome event is usually over (out of beer ;-) quickly. Make a suggestion ... ;-) cug ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing li

Re: Wiki book changes

2007-06-11 Thread David Holt
Don't know about RSS but an alternative that I do is regularly check this page as part of my WO collection of tabs in Safari: http://en.wikibooks.org/w/index.php? title=Special:Recentchangeslinked&target=Programming%3AWebObjects David On 11 Jun 2007, at 3:24 PM, Steven Mark McCraw wrote:

Wiki book changes

2007-06-11 Thread Steven Mark McCraw
Hi all, I am familiarizing myself with the Wiki book for WebObjects (http:// en.wikibooks.org/wiki/Programming:WebObjects) to familiarize myself with the contents and see what I can hopefully contribute, and I remember someone at the WOWODC (Mike Schrag, I believe?) saying something to the

Re: WOWOWOWODC 2007

2007-06-11 Thread Gavin Eadie
At 8:47 AM -0700 6/11/07, Janine Sisk wrote: I had a great time as well; kudos to the organizers and presenters! WOWODC 2007 is over, and I'm sharing a few pictures. The light level was a little low for, but I don't like flashing people. http://web.mac.com/gavineadie I think everyone w

Thanks for the conference & an eclipse question

2007-06-11 Thread Tobias Crawley
Thanks to everyone who organized, presented, and came to WOWODC! I'm looking forward to trying to absorb all of the new information over the next few weeks/months. I'm starting with D2W today. I noticed during Chuck's Eclipse pitch that he was able to narrow the 'problems' view by clicking

Post WWDC Plans for Monday Night?

2007-06-11 Thread Chuck Hill
Any plans for tonight? The welcome event is usually over (out of beer ;-) quickly. -- Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific problems. http://www.global-village.net/products/practical_webobject

Re: WOWOWOWODC 2007

2007-06-11 Thread Janine Sisk
I had a great time as well; kudos to the organizers and presenters! janine On Jun 10, 2007, at 10:25 PM, Scott Lopatin wrote: Great show tonight, thanks everyone and great to see a strong community! Below is a link to the WOGoogleCheckout open source framework that we released at the 'co

Re: Performance problem before and after growing WOWorkerThreads number

2007-06-11 Thread Chuck Hill
Hi Benoit, On Jun 8, 2007, at 11:24 AM, Benoit Cantin wrote: On one of our apps, we have what I describe in the subject. The growing worker threads is not the problem It is just a symptom of the problem. Application runs on xserve dual G5 and wo 5.3.3. Only one instance, multithread

Re: Comparing arrays

2007-06-11 Thread Chuck Hill
On Jun 10, 2007, at 10:34 PM, Michelle Parker wrote: Hi all I have a slight problem which I am looking for the most efficient solution: I am comparing 2 NSArrays containing numbers, with the aim of removing the numbers in one array from the other array. The first array is obtained by r

Re: WO 4.5 on NT & Env Vars

2007-06-11 Thread Chuck Hill
One thing that I recall is that NT had a 1024 (or 1023 or similar) limit to the command line length. Anything more than that, it just truncates the command and tries to execute it. We ran into problems when we had too many frameworks and path names that were too long. We ended up mappi

Space still available: WebObjects I - Introductory Course, 6/18-6/22 in Seat

2007-06-11 Thread Aaron Morse
Hello everyone. Space is still available in Übermind's introductory class on WebObjects next week in Seattle. Please see the details, below. Aaron Begin forwarded message: From: Aaron Morse <[EMAIL PROTECTED]> Date: April 10, 2007 3:19:18 PM AKDT To: WebObjects Dev Apple Subject: WebObj

Re: Force quit without monitor

2007-06-11 Thread Galen Rhodes
There's also Application.application().terminate(); Just make sure you do have the instance set to relaunch. -- Galen Rhodes [EMAIL PROTECTED] "There is no worse tyranny than to force a man to pay for what he does not want merely because you think it would be good for him." -- Robert Heinle

Re: Comparing arrays

2007-06-11 Thread Frederic JECKER
Woops, Nevermind, removeAll isn't comparator based so this won't work Sorry Fred Frederic JECKER a écrit : Another way would be to create a custom java.util.Comparator to compare Integer to Long objects to avoid conversion. Once done, just create two java.util.TreeSet (one for each array) and

Re: Comparing arrays

2007-06-11 Thread Frederic JECKER
Another way would be to create a custom java.util.Comparator to compare Integer to Long objects to avoid conversion. Once done, just create two java.util.TreeSet (one for each array) and populate them with the addAll() function. Then the removeAll() function should do the job Regards FJ Galen

Re: Comparing arrays

2007-06-11 Thread Galen Rhodes
You could try mass conversion of the arrays to strings like so: NSArray arStr = NSArray.componentsSeparatedByString (arLong.componentsJoinedByString("|"), "|"); I think that'll work. -- Galen Rhodes [EMAIL PROTECTED] "There is no worse tyranny than to force a man to pay for what he does no

Re: Force quit without monitor

2007-06-11 Thread Thierry Kramis
Thanks all for replaying to this thread. I didn't have time to do this up to know because we were involved in an other urgent matter. I'll check this script out... Am 8.5.2007 23:26 Uhr schrieb "Lachlan Deck" unter <[EMAIL PROTECTED]>: > Hi there, > > On 05/05/2007, at 3:29 AM, Thierry Kramis w

Re: Comparing arrays

2007-06-11 Thread Q
On 11/06/2007, at 3:34 PM, Michelle Parker wrote: Hi all I have a slight problem which I am looking for the most efficient solution: I am comparing 2 NSArrays containing numbers, with the aim of removing the numbers in one array from the other array. The first array is obtained by rawR

Re: WO 4.5 on NT & Env Vars

2007-06-11 Thread Anthony Arthur
Please reply to [EMAIL PROTECTED] On Jun 11, 2007, at 3:10 AM, Art Isbell wrote: On Jun 10, 2007, at 6:05 PM, Anthony Arthur wrote: Wondering if anyone out there remembers this stuff -- circa 1999 It's been a long time, but I'll throw out some guesses based on fuzzy memories from the di

Re: Comparing arrays

2007-06-11 Thread Jerry W. Walker
Hi, Michelle, On Jun 11, 2007, at 3:39 AM, Daniele Corti wrote: 2007/6/11, Michelle Parker <[EMAIL PROTECTED]>: Hi all I have a slight problem which I am looking for the most efficient solution: I am comparing 2 NSArrays containing numbers, with the aim of removing the numbers in one array f

Re: WO 4.5 on NT & Env Vars

2007-06-11 Thread YL
- Original Message - From: "Art Isbell" <[EMAIL PROTECTED]> To: "WebObjects-Dev Mailing List" Sent: Monday, June 11, 2007 1:10 AM Subject: Re: WO 4.5 on NT & Env Vars > On Jun 10, 2007, at 6:05 PM, Anthony Arthur wrote: > > > Wondering if anyone out there remembers this stuff -- circa 1

Re: Comparing arrays

2007-06-11 Thread Daniele Corti
2007/6/11, Michelle Parker <[EMAIL PROTECTED]>: Hi all I have a slight problem which I am looking for the most efficient solution: I am comparing 2 NSArrays containing numbers, with the aim of removing the numbers in one array from the other array. The first array is obtained by rawRowsForSQL

Re: Problem with deleting a related object (to-many relationship)

2007-06-11 Thread Daniele Corti
2007/6/8, David Avendasora <[EMAIL PROTECTED]>: Hi all, I have the following relationship: Tool <-->> ToolConfiguration. - Optionality for the "tool" relationship in ToolConfiguration is "Mandatory" - Optionality for the "toolConfigurations" relationship of Tool is "Optional" - "Owns Destinati

Re: WO 4.5 on NT & Env Vars

2007-06-11 Thread Art Isbell
On Jun 10, 2007, at 6:05 PM, Anthony Arthur wrote: Wondering if anyone out there remembers this stuff -- circa 1999 It's been a long time, but I'll throw out some guesses based on fuzzy memories from the distant past :-) 1) How does WO 4.5 on NT define environment variables that don't a