WOSwitchComponent Problem

2007-03-06 Thread Thierry Kramis
Hi there I would like to create a solution that makes me able to have multiple windows in a webobjects application (windows realised with YUI). Now the content of each windows is created from an existing WOComponent-File. Up to now I'm realizing this with a WOSwitchComponent. The problem of that

MEETING: Chicago CocoaHeads / CAWUG Tuesday 3/13 - Core Image

2007-03-06 Thread Bob Frank
Hi all, The Chicago CocoaHeads / Chicago Cocoa and WebObjects User Group (CAWUG) is holding our next meeting this coming Tuesday, March 13th, at 6:00 PM at the Apple Store on Michigan Ave. Agenda: - Introductions Announcements - Dave Dribin on Core Image - Q

Advanced WebObjects Development course, UK

2007-03-06 Thread Elizabeth Lynch
We have three places available on our next scheduled Advanced course: Advanced WebObjects Development. March 26th - 30th This course is very useful for developers who already have practical experience of working on a WebObjects project, and who want to investigate EOF in depth and learn

Single sign on in multiple WOApps / passing parameters between apps

2007-03-06 Thread Ken Tabb
Hi folks, I think I must be missing something head-slappingly obvious. I have multiple WO apps, all running off the same user database, and for each app, the user authenticates against that user database before they're let into the app (i.e. the Main component has a conditional login form

Re: Single sign on in multiple WOApps / passing parameters between apps

2007-03-06 Thread Chuck Hill
Hi Ken, On Mar 6, 2007, at 10:09 AM, Ken Tabb wrote: Hi folks, I think I must be missing something head-slappingly obvious. No. I have multiple WO apps, all running off the same user database, and for each app, the user authenticates against that user database before they're let into

re: WOSwitchComponent Problem

2007-03-06 Thread Andrew Lindesay
Hello Thierry; Are you not able to use the same component (in or out of a WOSwitchComponent) twice on the page with two separate sets of bindings which define the data for the two different circumstances? cheers. I would like to create a solution that makes me able to have multiple

Re: [SOLVED]: what to do with the return key

2007-03-06 Thread Baiss Eric Magnusson
input type=submit style=position:fixed;visibility:hidden;/ worked to dis-able the return key in a form from going to the first Submit button on the page. Thanks to a lot of folks for submitting other potential ideas for solving the problem. From: Sam Barnum [EMAIL PROTECTED] Using

Re: WOSwitchComponent Problem

2007-03-06 Thread Thierry Kramis
Not really. I have not just two components, but many more. Actually the problem is, that WebObjects seems to hold objects somewhere in memory and then get's them back when I open the window again... Somehow. Am 6.3.2007 20:30 Uhr schrieb Andrew Lindesay unter [EMAIL PROTECTED]: Hello Thierry;

WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Baiss Eric Magnusson
I am experiencing the DST problem on my web sites even though I installed WO 5.3.3. From Apple docs: http://docs.info.apple.com/article.html?artnum=305009 It appears that I will have to update to Java 1.5, i.e. Java for Mac OS X 10.4 Release 5. I suspect that will break some

Re: WOSwitchComponent Problem

2007-03-06 Thread Andrew Lindesay
Hello Thierry; Actually the problem is, that WebObjects seems to hold objects somewhere in memory and then get's them back when I open the window again... Somehow. It is a little hard to understand without seeing the project, but if your components are in the WOSwitchComponent then they

Re: WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Cretu Catalin
We just fix this issue: upgrade the deployment platform to 5.3, but development and deploy command is done on 5.2. Catalin --- Baiss Eric Magnusson [EMAIL PROTECTED] wrote: I am experiencing the DST problem on my web sites even though I installed WO 5.3.3. From Apple docs:

Re: Single sign on in multiple WOApps / passing parameters between apps

2007-03-06 Thread Tom Termini
We've done extensive work with Single Sign On, integration of WebObjects applications into portals, etc. We have a JSR168 framework for portlets. We use that with back-end LDAP authentication to give a SSO like experience. We are working on a CAS solution to pass authentication tokens, but

Re: WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Ken Anderson
On Mar 6, 2007, at 4:20 PM, Baiss Eric Magnusson wrote: But I don't get the DST fix. All the times are wrong in three different WO calendar sites, even though cat /System/Library/Frameworks/JavaWebObjects.framework/Resources/ version.plist says I've got WO 5.3.3 running.

Re: Single sign on in multiple WOApps / passing parameters between apps

2007-03-06 Thread Andrew Satori
This is one of the nastier issues that faces web developers, not just WebObjects, but all of the toolkits. There are some common approaches, but in general they all have some sort of security ramifications. The issue is that no matter what method you employ, in order to maintain context

Re: WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Ken Anderson
OK - I just noticed that it goes back to 7:30 PM in April, so I guess we need to understand a little more about your app and how it stores dates before it's possible to help. I wrote this bit of code to test things out and verify the change: NSTimeZone localtime =

Problem removing/deleting all related objects.

2007-03-06 Thread David Avendasora
Hi all, What could I be doing wrong that when I execute the following method that it only deletes half of the relationships? It alternates, deleting one, skipping one, deleting one, skipping one, and so on I have a component with a submit button that calls the

Re: Problem removing/deleting all related objects.

2007-03-06 Thread Ken Anderson
David, Because you're enumerating something that is being modified. An approach might be to create a clone of scheduledBatches(), so that you will iterate over an array that isn't changing. Ken On Mar 6, 2007, at 5:31 PM, David Avendasora wrote: Hi all, What could I be doing wrong

Re: Problem removing/deleting all related objects. SOLVED

2007-03-06 Thread David Avendasora
That did it! Thanks Gary! On Mar 6, 2007, at 5:38 PM, Gary Teter wrote: On Mar 6, 2007, at 2:31 PM, David Avendasora wrote: Enumeration objects = scheduledBatches().objectEnumerator(); Enumeration objects = scheduledBatches().immutableClone ().objectEnumerator(); --

Re: Why would D2WModel be trying to load at deployment?

2007-03-06 Thread Lachlan Deck
Anyone? I'm at a loss... Sorry to those also on the woproject-dev list - but I've had no response on either list. On 06/03/2007, at 3:55 PM, Lachlan Deck wrote: I've got an app that I've brought over from Xcode to Eclipse/WOLips (no wonder includes). It all compiles fine but when I

Re: Why would D2WModel be trying to load at deployment?

2007-03-06 Thread Chuck Hill
Looks to me like you have a D2W resource (whether you intentionally created it or want it or not!) in a bundle but no D2W classes on your classpath. Check your projects. Probably something got created inadvertently. Chuck On Mar 6, 2007, at 3:34 PM, Lachlan Deck wrote: Anyone? I'm at

Re: Why would D2WModel be trying to load at deployment?

2007-03-06 Thread Lachlan Deck
Hi there, On 07/03/2007, at 10:45 AM, Chuck Hill wrote: Looks to me like you have a D2W resource (whether you intentionally created it or want it or not!) in a bundle but no D2W classes on your classpath. Check your projects. Probably something got created inadvertently. Any ideas on

Re: Why would D2WModel be trying to load at deployment?

2007-03-06 Thread Chuck Hill
On Mar 6, 2007, at 3:53 PM, Lachlan Deck wrote: Hi there, On 07/03/2007, at 10:45 AM, Chuck Hill wrote: Looks to me like you have a D2W resource (whether you intentionally created it or want it or not!) in a bundle but no D2W classes on your classpath. Check your projects. Probably

Re: WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Baiss Eric Magnusson
2003-03-11 19:00:00.000 is how a date looks like to me in the DB, this I translate to 7PM P?T (ie PST or PDT). From the above does that imply, which I believe is correct, that the timezone is GMT? I guess I thought the default time zone, that is the time zone of the JVM on the server,

Re: WebObjects 5.3.3, DST and J2SE 1.4.2

2007-03-06 Thread Chuck Hill
NSTimestamp is always in GMT. You need run it through a formatter to convert to the local time zone. Chuck On Mar 6, 2007, at 4:02 PM, Baiss Eric Magnusson wrote: 2003-03-11 19:00:00.000 is how a date looks like to me in the DB, this I translate to 7PM P? T (ie PST or PDT). From the