Re: [castor-dev] Log messages from Castor

2003-07-22 Thread Bruce Snyder
This one time, at band camp, Marc Guillemot said: MG>I think that Castor doesn't use log messages enough intensively as it should MG>to inform about it's work. MG>For instance I just have to go with the debugger to find why an object MG>wasn't loaded. With this way I've found the cause of the prob

[castor-dev] Sprucing up my mapping...

2003-07-22 Thread Scott Schenksj
Hi All, I have an object as such: class MyClass { Element[] element; } I would like it to map as such: < I would like to see this extra framing tag. X X Using the cst:collection="array" attribute, I get something that looks more like this. X X

Re: [castor-dev] SourceGenerator: giving something back

2003-07-22 Thread Rhett Sutphin
Hi Dean & Keith, On Tuesday, July 22, 2003, at 02:14 AM, Chalker, Dean wrote: At the risk of starting a religious riot, here's another small donation. When using J2 collection types, it occurred to me that it would be "nicer" if the DTOs had iterator methods, and not just enumeration methods.

Re: [castor-dev] Log messages from Castor

2003-07-22 Thread Marc Guillemot
I use log4j intensively but I've never seen the singlest message from Castor. Marc. - Original Message - From: "Alexey A. Efimov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 2:01 PM Subject: Re: [castor-dev] Log messages from Castor > Can you use log4j witho

Re: [castor-dev] Log messages from Castor

2003-07-22 Thread Alexey A. Efimov
Can you use log4j without Castor? Maybe application just not initialize it? -Original Message- From: Marc Guillemot [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: Re: [castor-dev] Log messages from Castor Hi, yes I use the LogInterceptor f

Re: [castor-dev] Log messages from Castor

2003-07-22 Thread Marc Guillemot
Hi, yes I use the LogInterceptor for log4j. Or more exactly I've set it up, but I've never seen a single line of log comming from it. From what I've seen in the source code of Castor, it seems normal because I didn't see any attempt to log something. Marc. - Original Message - From: "Al

[castor-dev] jdoMapper does not find any classes

2003-07-22 Thread Weinzierl Christian
Title: jdoMapper does not find any classes hello, i started coding my mapping file and decided to try the mappingfile-generator jdomapper (o2xmapper version 0.1final aswell as 0.2) but whenever i try to add a class to a mappping project i get a ClassNotFoundException. I set the classp

Re: [castor-dev] Log messages from Castor

2003-07-22 Thread Alexey A. Efimov
Hello, Did you setup LogInterceptor? "How it" http://www.brainopolis.com/castorwiki/Wiki.jsp?page=IntegratingLogging -Original Message- From: Marc Guillemot [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 2:53 PM To: [EMAIL PROTECTED] Subject: [castor-dev] Log messages from Castor

[castor-dev] Log messages from Castor

2003-07-22 Thread Marc Guillemot
Hi, I think that Castor doesn't use log messages enough intensively as it should to inform about it's work. For instance I just have to go with the debugger to find why an object wasn't loaded. With this way I've found the cause of the problem and could fix it, but it could havebeen really easier

[castor-dev] Newbie Question - org.exolab.castor.util.LocalConfiguration - not found

2003-07-22 Thread Catalin VLAD
Hello,May be this is a stupid question but I don't care.I'm trying to use Castor for generating Java classes but I have thefollowing error:Exception in thread mainjava.lang.NoClassDefFoundError: org.exolab.castor.util.LocalConfiguration    atorg.exolab.castor.builder.SourceGenerator.(Sou

[castor-dev] Newbie Question - org.exolab.castor.util.LocalConfiguration - not found

2003-07-22 Thread Catalin VLAD
Hello, May be this is a stupid question but I don't care. I'm trying to use Castor for generating Java classes but I have the following error: Exception in thread main java.lang.NoClassDefFoundError: org.exolab.castor.util.LocalConfiguration at org.exolab.castor.builder.SourceGenerator.(

Re: [castor-dev] SourceGenerator: giving something back

2003-07-22 Thread Chalker, Dean
Hi Keith, At the risk of starting a religious riot, here's another small donation. When using J2 collection types, it occurred to me that it would be "nicer" if the DTOs had iterator methods, and not just enumeration methods. When I looked, the change turned out to be nearly trivial. Regard