Re: [castor-dev] Strategy Proposal (repost - was: Castor JDO Status)

2002-05-01 Thread Kevin . Lanaghan
My vote, if I have one, is for performance optimization on the 1 to many, many to many queries. "Thomas Yip"

Re: [castor-dev] Strategy Proposal (repost - was: Castor JDO Status)

2002-04-29 Thread Kevin . Lanaghan
Sounds like a good approach Bruce Snyder

Re: [castor-dev] Castor JDO Status

2002-04-25 Thread Kevin . Lanaghan
One step further would be to assign the various features to a lead/committer who can in turn create a list of subprojects for "volunteers". I'm not familar enough with the code to tackle any of the larger features but would sign up for doing some of the smaller stuff.

Re: [castor-dev] : CastorJDO & TogetherControlCenter

2002-04-24 Thread Kevin . Lanaghan
If you get to work let me know. Are these modules sensitive to the version of together. Erik Gollot

Re: [castor-dev] : CastorJDO & TogetherControlCenter

2002-04-24 Thread Kevin . Lanaghan
I just did a search of the archives. The module is at this link http://sourceforge.net/projects/togmap I haven't tried it yet but may in the next couple of days. Kevin

Re: [castor-dev] Castor JDO status

2002-04-22 Thread Kevin . Lanaghan
My apologies Keith, Intalio and the other contributors have been extremely generous in the resources they provided. Keith Visco

Re: [castor-dev] JNDI/JDO: can't find a class when using a jdo r etrievedfrom jndi

2002-04-20 Thread Kevin . Lanaghan
Finally got it to work. Once I thought about it and looked at the exception I realized that the mapping was being loaded. I looked into the mapping file and found a space in front of the definition for SignInRole. Conclusions: I can't see another way of using CASTOR on the j2ee 1.3 architectur

Re: [castor-dev] Can't find database.xml in weblogic 6.1 startup class

2002-04-19 Thread Kevin . Lanaghan
I haven't tried absolute path's in a while but will find out today. "Colin Canfield"

Re: [castor-dev] Can't find database.xml in weblogic 6.1 startup class

2002-04-18 Thread Kevin . Lanaghan
GOTCHA, Now all I have to do is figure out how to use ejb's in weblogic startup classes without conflicting with some other classes "Ebersole, Steven"

Re: [castor-dev] castor properties file and servlets

2002-04-18 Thread Kevin . Lanaghan
If the files are placed in WEB-INF they won't be available to beans or startup classes Dave Weis

Re: [castor-dev] Can't find database.xml in weblogic 6.1 startup class

2002-04-18 Thread Kevin . Lanaghan
I'd like to see the servlet .. With the new j2ee using the getClass.getResource method just isn't practical. Classes may be loaded by the ejb module the web application module or through the system classpath. Storing the JDO in JNDI may be more practical but wouldn't that require having a pool

Re: [castor-dev] OQL console and samples

2002-04-16 Thread Kevin . Lanaghan
There aren't any consoles that I know of Thomas. As far as the samples. There are some included with the download - but they do have some problems. If you do have problems post something and someone will generally answer within a day. Kevin

[castor-dev] weblogic 5.1 to 6.1 classpath not found by mapper

2002-04-15 Thread Kevin . Lanaghan
I am in the midst of porting from 5.1 to 6.1 and having significant problems getting my app to work. It was working on 5.1 but something isn't configured correctly on 6.1. The mapping and database files are written correctly I've been working with castor for 6 months . I'm running the most rec

Re: [castor-dev] JDO and datasources

2002-02-04 Thread Kevin . Lanaghan
If you're using weblogic and have defined a datasource called WhiteboardDS then the following will work. Richard Lawson

Re: [castor-dev] bug handling OQL date literals

2002-01-28 Thread Kevin . Lanaghan
Try using a date object in the where clause public static Date getCurrentDateTimeOffset(long seconds) throws Exception { long now = System.currentTimeMillis(); return new Date(now - seconds * 1000); } Date dischargedAfter = TimeCalculator.getCurrentDateTimeOffs

Re: [castor-dev] JDO Example

2002-01-08 Thread Kevin . Lanaghan
Download the j2ee from Sun. "Rainer Mueller"

Re: [castor-dev] Beta Documentation?

2001-12-10 Thread Kevin . Lanaghan
That was offensive and uncalled for. Ryan Marsh

Re: [castor-dev] JDO Configuration

2001-12-04 Thread Kevin . Lanaghan
If you're not familar with "Ant" -- below is a modified build.xml file which can be used to compile the cvs release. The build.xml is used by ant to compile all of your stuff. Either you can include the jars specified in the kpath property in your class path or modify the script below. Docume

Re: [castor-dev] JDO: Object Cache and JNDI...

2001-12-04 Thread Kevin . Lanaghan
I was wondering about this as well.Also, does binding a single jdo to the jndi pretty much eliminate the benefits of having a connection pool.

Re: [castor-dev] castor jdo & ibm websphere

2001-12-04 Thread Kevin . Lanaghan
Here's an example from the archives on how to do it with weblogic. Only catch is a transactional datasource has to be used. Have you seen this ?? Hi Patrick, The following works (on Weblogic 5.1 sp 10) START package top.secret.config. import java

[castor-dev] OQL order by on a field inside of a member instance, i.e. order by p.classInstance.member_variable

2001-11-27 Thread Kevin . Lanaghan
I'm having a problem with an order by in the query below when bed is not defined. Classes below are simplified. OQLQuery oql = _db.getOQLQuery( "SELECT p FROM Encounter p where p.unit = $1 order by p.bed.sortOrder"); Class Encounter { long _id; long _bedId; long _patientID; String

[castor-dev] outer joins & order by on a field within a nest class. Field may be null

2001-11-27 Thread Kevin . Lanaghan
I'm having a problem with an order by in the query below when bed is not defined. OQLQuery oql = _db.getOQLQuery( "SELECT p FROM Encounter p where p.unit = $1 order by p.bed.sortOrder"); Class Encounter { String _unit; Patient _patient; Bed _bed; } Class Bed { long _id; int _s

[castor-dev] Exception thrown when an ORACLE INTEGER field value is nul

2001-11-21 Thread Kevin . Lanaghan
Kevin Lanaghan