10.6 Snow Leopard deployment, how to?

2009-08-26 Thread Massimiliano Picone
Hi all, as you already know the new Mac OS X Server 10.6 has no support for WebObjects deployment. As you can read on page 7 in the official docs, "WebObjects: Support for WebObjects is removed with Mac OS X v10.6." http://images.apple.com/server/macosx/docs/Web_Tech_Admin_v10.6.pdf I already

Re: 10.6 Snow Leopard deployment, how to?

2009-08-26 Thread David Avendasora
Hi Max, On Aug 26, 2009, at 4:29 AM, Massimiliano Picone wrote: Hi all, as you already know the new Mac OS X Server 10.6 has no support for WebObjects deployment. As you can read on page 7 in the official docs, "WebObjects: Support for WebObjects is removed with Mac OS X v10.6." http://i

Re: 10.6 Snow Leopard deployment, how to?

2009-08-26 Thread Massimiliano Picone
Hi David, Hi Max, On Aug 26, 2009, at 4:29 AM, Massimiliano Picone wrote: Hi all, as you already know the new Mac OS X Server 10.6 has no support for WebObjects deployment. As you can read on page 7 in the official docs, "WebObjects: Support for WebObjects is removed with Mac OS X v10.

Re: Switching version of Java for appserver user

2009-08-26 Thread Mike Schrag
i would check the JAVA_HOME env variable and also ~/Library/ Preferences/com.apple.java.util.prefs for the user that is running the app On Aug 25, 2009, at 8:50 PM, Mr. Frank Cobia wrote: Do you have any other idea of what value may affect it? Or should I just stick with changing the link?

Re: 10.6 Snow Leopard deployment, how to?

2009-08-26 Thread Pascal Robert
Anyway, we want to upgrade to Snow Leopard Server because we got Intel Xserves that can really benefit from the new OS, but one server is completely dedicated to Web and WebObjects. Do you think it's worth it? If your current WO install is running now and you aren't experiencing specific

Simple Question about bindings

2009-08-26 Thread Francesco Romano
Hi.. This is a very simple question, and I was able to find a workaround.. but I'd like to know where is the problem... I've this class: public class OrderComponent extends ERXComponent { private TemporaryOrder order; public OrderComponent(WOContext context)

Re: Simple Question about bindings

2009-08-26 Thread Francesco Romano
Little change... Because some problem with refresh I moved the TemporaryOrder object from the component to the session. This does not change the problem.. PS: How radio button &C. work?? (I've seen WORadioButtonList is deprecated.. Should I use ERXRadioButtonMatrix?... but selection is not

Re: Simple Question about bindings

2009-08-26 Thread Chuck Hill
I am not sure what the problem is, but it is very unusual (and probably just wrong) to sub-class NSArray etc. I think you want this: privateNSMutableArray cart; The add and cartTotal methods belong in the TemporaryOrder class. Chuck On Aug 26, 2009, at 10:20 AM, Francesco Romano wrote:

Re: Simple Question about bindings

2009-08-26 Thread Michael Shkutkov
I guess, the cause of this problem is the fact that NSArray implements NSKeyValueCoding interface and has valueForKey method. Obviously extending NSMutableArray is really bad idea... On Wed, Aug 26, 2009 at 9:20 PM, Francesco Romano wrote: > Hi..This is a very simple question, and I was able to

Re: Simple Question about bindings

2009-08-26 Thread John Huss
Yeah, what you want is: value = order.ca...@sum.totalprice; John On Wed, Aug 26, 2009 at 1:48 PM, Michael Shkutkov wrote: > I guess, the cause of this problem is the fact that NSArray implements > NSKeyValueCoding interface and has valueForKey method. > > Obviously extending NSMutableArray is r

Re: Simple Question about bindings

2009-08-26 Thread John Huss
Also, using "double" for the price is a very bad idea. Use BigDecimal. John On Wed, Aug 26, 2009 at 2:13 PM, John Huss wrote: > Yeah, what you want is: > > value = order.ca...@sum.totalprice; > > John > > On Wed, Aug 26, 2009 at 1:48 PM, Michael Shkutkov wrote: > >> I guess, the cause of this

Re: 10.6 Snow Leopard deployment, how to?

2009-08-26 Thread Joe Little
On Wed, Aug 26, 2009 at 2:50 AM, Massimiliano Picone wrote: > Hi David, > >> Hi Max, >> >> On Aug 26, 2009, at 4:29 AM, Massimiliano Picone wrote: >> >>> Hi all, >>> as you already know the new Mac OS X Server 10.6 has no support for >>> WebObjects deployment. As you can read on page 7 in the offic

D2W question - new D2W user

2009-08-26 Thread Andrew R. Kinnie
I was following David LeBer's D2W ExcelLook screen cast, and tried it out, but I am getting a key not found exception for "dateLastModified" despite not actually having that key in my d2w rule file. Apparently that key is used somewhere under the covers, but rather than blow something up,

Re: D2W question - new D2W user

2009-08-26 Thread David LeBer
On 26-Aug-09, at 3:57 PM, Andrew R. Kinnie wrote: I was following David LeBer's D2W ExcelLook screen cast, and tried it out, but I am getting a key not found exception for "dateLastModified" despite not actually having that key in my d2w rule file. Apparently that key is used somewhere un

Re: D2W question - new D2W user

2009-08-26 Thread David LeBer
Please keep replies on the list. On 26-Aug-09, at 4:40 PM, Andrew R. Kinnie wrote: displayPropertyKeys: ( "teacherLastNameFirstname", "samsClassroomName", "decile0", "decile100", "decileNoGrade", "percentagePassing" ) The EOModel has "samsClassroomName", "decile0", "decile100", "de

Re: D2W question - new D2W user

2009-08-26 Thread Andrew R. Kinnie
On Aug 26, 2009, at 4:51 PM, David LeBer wrote: Before we go too much further have you configured RuleModeler to communicate with WOLips following these instructions: The Rule Modeler preference was not set, so

Re: Switching version of Java for appserver user

2009-08-26 Thread Mr. Frank Cobia
Thanks for the help. I have not tested it yet, but I had been wondering if there was a way to set those variables in the build. Frank On Aug 25, 2009, at 11:21 PM, Chuck Hill wrote: On Aug 25, 2009, at 5:50 PM, Mr. Frank Cobia wrote: Do you have any other idea of what value may affect it?

Re: performance issue on delete record

2009-08-26 Thread Shelley Eitzen
Chuck Hill wrote: On Aug 21, 2009, at 3:55 AM, Shelley Eitzen wrote: Hi All, WebObjects 5.3 Mac OSX 10.5.8 Openbase 11.0 we are having a performance issue when we delete a record. application functionality is delete record create log record in another table the delete works fine when ther

Re: performance issue on delete record

2009-08-26 Thread Chuck Hill
On Aug 26, 2009, at 4:59 PM, Shelley Eitzen wrote: Chuck Hill wrote: On Aug 21, 2009, at 3:55 AM, Shelley Eitzen wrote: Hi All, WebObjects 5.3 Mac OSX 10.5.8 Openbase 11.0 we are having a performance issue when we delete a record. application functionality is delete record create log rec