Re: Not going to WOWODC this year?

2008-05-13 Thread Johann Werner
Hi Chuck, that's a quite interesting/impressive session list for WOWODC. Unfortunately there are no funds for me to attend it this year (but looking forward that it will change next time :-). This brings me to the question: will there be a WOWODC recordings only purchase available? Record

Re: fckeditor and DirectConnect

2008-05-13 Thread Denis Frolov
Hi, You can try something like: public String url() { String url = WOApplication.application().resourceManager().urlForResourceNamed("editor.js", null, null, context().request()); String rootDir = new File(url).getParentFile().getPath(); re

Re: Connection pooling + WebObjects

2008-05-13 Thread Shravan Kumar.M
Its very nice to hear your advises and discussions. Thanks for all your inputs. We have 3 app servers of which 2 act as webservers as well and 1 separate database server, all are of Solaris 9 OS. We do NOT have Project Wonder integrated to our app. Currently we have 100's of instances config

importing project from WebObjects-5.2.4 to WebObjects-5.4

2008-05-13 Thread santoshg
Hi All, We have a project which is developed using *WebObjects 5.2.4* and *Java 1.4.2* on *Windows XP *Platform and deployed on *Solaris 9.* Now we would like to upgrate to *WebObjects 5.4* on the same *Windows XP *Platform and deploy to same *Solaris 9.* Is *WO 5.4* compatible on *Windows

Re: Not going to WOWODC this year?

2008-05-13 Thread Pascal Robert
We do plan to sell the recordings who people who didn't attend, we just hope that we won't have the same recording problems as last year (we shouldn't have problems, we are getting better equipment, but we never know). More news on this after WWDC. Hi Chuck, that's a quite interesting/im

Re: importing project from WebObjects-5.2.4 to WebObjects-5.4

2008-05-13 Thread David Avendasora
To start with 5.4 is somewhat less-than-stable. You may want to move to 5.3.3 first, and await the next release of 5.4 (5.4.2). Second, WO is just Java it is almost certainly _compatible_ with any platform running Java. It is not officially supported on either Windows or Solaris. The last v

Re: Customizing Java class template

2008-05-13 Thread Mike Schrag
Is there a straightforward way to customize the Java class stub that is produced by the "WOLips Templateengine Plug-in" whenever I create a new component? I'd like to add in a few more items of boilerplate to these classes. Unfortunately "New Component" doesn't use the new template system ye

Re: Not going to WOWODC this year?

2008-05-13 Thread Miguel Arroz
Hi! It should work well as long as I don't touch anything. Yours Miguel Arroz On 2008/05/13, at 13:09, Pascal Robert wrote: We do plan to sell the recordings who people who didn't attend, we just hope that we won't have the same recording problems as last year (we shouldn't have probl

Re: importing project from WebObjects-5.2.4 to WebObjects-5.4

2008-05-13 Thread David Avendasora
Hi, Please keep questions on the list as they may help others also. It is not required to update to 5.3.3 first. It is just that 5.3.3 is has fewer undocumented bugs. Wait for 5.4.2 to come out before moving to 5.4. You will want to update to Eclipse 3.3.2 and the latest Stable build of

Re: fckeditor and DirectConnect

2008-05-13 Thread Helmut Schottmüller
Hi Denis, thanks, that worked fine! Regards, Helmut Am 13.05.2008 um 10:19 schrieb Denis Frolov: Hi, You can try something like: public String url() { String url = WOApplication .application().resourceManager().urlForResourceNamed("editor.js", null, null, context().request());

Re: [OT] Moscone center infected?

2008-05-13 Thread Cliff Tuel
The Moscone infection was limited to the North and South halls, where Macworld is held. Moscone West has its own kitchen, janitorial, etc. -- Cliff Tuel . [EMAIL PROTECTED] ___ Do not post admin requests to the list. They will be ignored. Webobjects

Not going to WOWODC this year?

2008-05-13 Thread Ricardo Legorreta
I´m trying to attend. We ´re very interested in WOWODC, specially for Java Client session. If I cannot attend (because just recently I attend to JavaOne and I have time constraints). We will buy all WOWODC recording sessions. Ricardo. Message: 5 Date: Tue, 13 May 2008 08:09:34 -0400 From:

Suggestions for Best Practices session at WOWODC?

2008-05-13 Thread Chuck Hill
Hi All, I wanted to solicit some ideas and suggestions for this session. My current thought is to have a selection of practices which I will present and then get comments (debate) from the other members of the panel. The idea being that we don't all see them with the same eyes and some

Re: Customizing Java class template

2008-05-13 Thread Paul Hoadley
On 13/05/2008, at 10:06 PM, Mike Schrag wrote: Is there a straightforward way to customize the Java class stub that is produced by the "WOLips Templateengine Plug-in" whenever I create a new component? I'd like to add in a few more items of boilerplate to these classes. Unfortunately "New

Re: Suggestions for Best Practices session at WOWODC?

2008-05-13 Thread Owen McKerrow
What about something on WOOgnl ? Owen McKerrow WebMaster, emlab Ph : +61 02 4221 5517 http://emlab.uow.edu.au - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "As of tomorrow, employees will only be able to access the building using individual security

takeFormValuesFromRequest problem

2008-05-13 Thread Lachlan Deck
Hi there, got a login form that allows either a company or person to login. The form looks like so: [ ] is company Company Name: [] First Name: [] Last Name: [] Email: [] Password: [] company name is initially hidden. Javascript toggles the visibility

Re: takeFormValuesFromRequest problem

2008-05-13 Thread Andrew Lindesay
Hello Lachlan; I tend to keep the state of the toggle in the component controller rather than the EO and then take action on the state of the toggle in a takeValuesFromRequest(..) override. cheers. got a login form that allows either a company or person to login. The form looks like so:

Re: Customizing Java class template

2008-05-13 Thread Mike Schrag
http://wiki.objectstyle.org/confluence/display/WOL/Custom+Project+Templates On May 14, 2008, at 12:34 AM, Paul Hoadley wrote: On 13/05/2008, at 10:06 PM, Mike Schrag wrote: Is there a straightforward way to customize the Java class stub that is produced by the "WOLips Templateengine Plug-in"

Re: takeFormValuesFromRequest problem

2008-05-13 Thread Lachlan Deck
Hi Andrew, On 14/05/2008, at 3:16 PM, Andrew Lindesay wrote: I tend to keep the state of the toggle in the component controller rather than the EO It already is :-) Don't let the form value names fool you. and then take action on the state of the toggle in a takeValuesFromRequest(..) over