Re: converting from openbase to oracle

2006-03-16 Thread Chuck Hill
Hi Dave, On Mar 16, 2006, at 10:06 PM, Dave Elsner wrote: Hi, In the process of migrating all the data from one of our Openbase 8 DB to Oracle 9. To do this I cloned the original EOModel and changed the cloned model to point to the new Oracle 9 DB, and changed all the column data type

converting from openbase to oracle

2006-03-16 Thread Dave Elsner
Hi,In the process of migrating all the data from one of our Openbase 8 DB to Oracle 9.To do this I cloned the original EOModel and changed the cloned model to point to the new Oracle 9 DB, and changed all the column data type to the appropriate kind.  e.g.  char > VARCHAR2  , text > CLOB, etcI then

Re: Thread or no thread

2006-03-16 Thread Chuck Hill
On Mar 16, 2006, at 5:34 PM, Art Isbell wrote: On Mar 16, 2006, at 3:24 PM, Mohapatra Ashish wrote: I am back again. This time with a question of where to draw line on horizontal scaling and go for application threading. All WO apps are multithreaded, so you probably intend to enable con

Re: Thread or no thread

2006-03-16 Thread Art Isbell
On Mar 16, 2006, at 3:24 PM, Mohapatra Ashish wrote: I am back again. This time with a question of where to draw line on horizontal scaling and go for application threading. All WO apps are multithreaded, so you probably intend to enable concurrent request handling. Are there any more iss

Thread or no thread

2006-03-16 Thread Mohapatra Ashish
Hi All, I am back again. This time with a question of where to draw line on horizontal scaling and go for application threading. Are there any more issues sighted on this than the effort of making complete thread-safe application. I want to get a complete detail of sighted problems in going for

[OT] Casual work in Sydney/Wollongong, Australia

2006-03-16 Thread Owen McKerrow
Hi All, We are located within the Faculty of Education, at the Uni of Wollongong currently developing some enterprise applications for various university customers. (See link in my sig below for more about us and where Wollongong is - 1 hr south of Sydney) Our current projects have us working t

EOModels & LDAP Authentication

2006-03-16 Thread Thaddeus Cooper
Hi All -- I haven't posted here in a while, but a colleague of mine who has been reading the list regularly told me that there was interest in being able to authenticate to LDAP using an EOModel. I finally cracked this nut after a bit of work on the problem, and I've got a model and some

Re: EOModeler Issue

2006-03-16 Thread Ian Joyner
It looks like EOGenerator 1.7 solves my problem from the discussion of last year. The template now reads:public abstract class <$GEN_PREFIX$><$clientClassNameWithoutPackage$> extends <$javaParentClientClassName$> {which from a quick test has generated both a client-side parent class name and EOGene

Re: WirehoseChangeNotification

2006-03-16 Thread David Griffith
Mike, You da man. Thanks. That did it. Regards, Dave. On 16 Mar 2006, at 13:05, Mike Schrag wrote: if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Objects is asking for trouble ... if prodActive was set to new Boolean(true), you're out of luck. Us

Re: WirehoseChangeNotification

2006-03-16 Thread David Griffith
Well it wasn't, but fair enough, thanks for the tip! I'll try that and see if it helps. Have never had a problem with that before though. Regards, David. On 16 Mar 2006, at 13:05, Mike Schrag wrote: if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Ob

RE: Email Problem in WebObjects

2006-03-16 Thread Ganesh Kumar D
Hi Robert, Thanks for your reply. I found the solution. Actually the problem is with Subject. I added a new line character at the end of the subject. Thanks, Ganesh -Original Message- From: Pascal Robert [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 7:04 PM To

Re: WirehoseChangeNotification

2006-03-16 Thread Mike Schrag
if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Objects is asking for trouble ... if prodActive was set to new Boolean(true), you're out of luck. Use .equals instead. ___ Do not post admin requests to the list