[JBoss-dev] newbie question on log.trace

2002-02-26 Thread marc fleury
so I knew how to configure log4j to only show INFO, DEBUG or WARN. I am in the dark as to how to configure the TRACE thing in log4j. Is it the same? I only say TRACE? And what is the advantage over DEBUG again? marcf ___ Jboss-development mailing

Re: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread Jason Dillon
If you look at the bottom of log4j.xml it has examples of enabling TRACE for some categories. For prop style, you say ...=TRACE#org.jboss.logging.XPriority Have a look at http://jboss.org/developers/guide/logging.jsp for more details. Looks like the examples need to be updated... --jason

RE: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread marc fleury
gee, that makes me feel good ... my own website, it is well written too and I understood :) thanks kid it is exactly what I needed marcf PS: is there a threadTrace() thingy where it creates a new file per thread that would come it and the messages are linked to a given thread going through?

Re: [JBoss-dev] notes on configuration

2002-02-26 Thread Jason Dillon
Does this mean that we will always have seperate .xml? Packaged is nice for classes and file systems, but when the config is inside too, then it is a pain to configure. Take jetty-plugin.sar. If a user wants to change ports or add/remove listeners then need to unjar/edit/rejar... kinda

Re: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread Jason Dillon
PS: is there a threadTrace() thingy where it creates a new file per thread that would come it and the messages are linked to a given thread going through? is that a custom logger? You lost me here. What are you trying to track? --jason ___

[JBoss-dev] CVS update: newsite/src/docs/developers/guide logging.jsp

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 00:54:12 Modified:src/docs/developers/guide logging.jsp Log: o updated for xml style (have not tested that this will render correctly) Revision ChangesPath 1.3 +52 -7 newsite/src/docs/developers/guide/logging.jsp Index:

[JBoss-dev] CVS update: contrib/jetty/src/resources/jetty-plugin/META-INF jboss-service.xml

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 00:57:30 Modified:jetty/src/resources/jetty-plugin/META-INF jboss-service.xml Log: o using jboss.home property in config files that otherwise used ../XXX Revision ChangesPath 1.22 +1 -2

[JBoss-dev] CVS update: jboss/src/etc/conf/default log4j.xml

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 00:57:30 Modified:src/etc/conf/default log4j.xml Log: o using jboss.home property in config files that otherwise used ../XXX Revision ChangesPath 1.3 +2 -2 jboss/src/etc/conf/default/log4j.xml Index: log4j.xml

RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
|-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Jason |Dillon |Sent: Tuesday, February 26, 2002 12:41 AM |To: marc fleury |Cc: Jboss-Development@Lists. Sourceforge. Net |Subject: Re: [JBoss-dev] notes on configuration | | |Does this mean that we will

Re: [JBoss-dev] notes on configuration

2002-02-26 Thread Jason Dillon
Why not make more usage of notifications here. Such that jetty could send a notificatioin when it needs to be redeployed due to config change. It may know best for some/most config changes. --jason marc fleury wrote: |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL

WG: [JBoss-dev] JBoss/.Net plugin broken...

2002-02-26 Thread Jung , Dr. Christoph
-Ursprüngliche Nachricht- Von: David Jencks [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 26. Februar 2002 06:29 An: Jung , Dr. Christoph Betreff: Re: [JBoss-dev] JBoss/.Net plugin broken... I think I've updated it to match the latest deployer structure -- it compiles anyway. It

RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
|Why not make more usage of notifications here. Such that jetty could |send a notificatioin when it needs to be redeployed due to config |change. It may know best for some/most config changes. correct, jetty knows best what requires a restart and what does not, all this handling should be done

RE: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread marc fleury
|PS: is there a threadTrace() thingy where it creates a new file per thread |that would come it and the messages are linked to a given thread going |through? is that a custom logger? | |You lost me here. What are you trying to track? A thread. A thread is coming in and collecting thread

Re: [JBoss-dev] CVS update: jboss-system/src/main/org/jboss/system/server ServerImpl.java ServerInfo.java ServerInfoMBean.java

2002-02-26 Thread Marcel Ammerlaan
Hi, Lurk mode off.. Jason Dillon wrote: o ServerImpl uses org.jboss.net.protocol.URLStreamHandlerFactory instead of setting system prop Setting the system property will work but the seperator char is '|' not ':'. The system property is a better solution as there can be only one

Re: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread Jason Dillon
You can specify %t in the appenders format to get the thread name. Look at http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/PatternLayout.html for more details. --jason marc fleury wrote: |PS: is there a threadTrace() thingy where it creates a new file per thread |that would come

Re: [JBoss-dev] CVS update: jboss-system/src/main/org/jboss/system/server ServerImpl.java ServerInfo.java ServerInfoMBean.java

2002-02-26 Thread Jason Dillon
Setting the system property will work but the seperator char is '|' not ':'. The system property is a better solution as there can be only one I found this out when looking at the source for URL...just looked at our jndi.properties file for an example... which is wrong.

RE: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread marc fleury
I want just one thread though. Well I guess you can then grep for the thread name... not important thanks marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Jason |Dillon |Sent: Tuesday, February 26, 2002 1:26 AM |To: marc fleury |Cc:

[JBoss-dev] Long tmp deploy urls

2002-02-26 Thread Jason Dillon
These are murder when trying to debug something with deployment... do we really need this? --jason ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread Neale Swinnerton
On Tue, Feb 26, 2002 at 04:16:25AM -0800, marc fleury wrote: |PS: is there a threadTrace() thingy where it creates a new file per thread |that would come it and the messages are linked to a given thread going |through? is that a custom logger? | |You lost me here. What are you trying to

RE: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread marc fleury
oka thanks :) I remember scott putting some of these NDCs around and I am thinking that the base should use these everywhere. But I guess scott is sleeping? god I am going to, got big phones tomorrow, one at 11 and one at 2... which leaves me 5 hours... easy BTW I am done with the auto-order

[JBoss-dev] CVS update: jboss/src/main/org/jboss/web AbstractWebContainer.java

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 01:44:56 Modified:src/main/org/jboss/web AbstractWebContainer.java Log: o not masking an exception trace o a bit of debug Revision ChangesPath 1.37 +9 -2 jboss/src/main/org/jboss/web/AbstractWebContainer.java Index:

RE: [JBoss-dev] Tshirts at JavaOne FREE TRAINING

2002-02-26 Thread Sacha Labourey
Thank you for asking Dain... Don't feel alone... ... JBoss: All your J2EE are belong to us Maybe I'm an idiot, but what the hell does this mean? -dain ___ Jboss-development mailing list [EMAIL PROTECTED]

RE: [JBoss-dev] init/create calls with subpackaging not in the same order

2002-02-26 Thread Sacha Labourey
Hello David, I doubt it is essential, however... init usually just identifies the deployment descriptor and file to watch. There is some advantage to locating this as soon as possible, to help avoid runaway redeploys in case of failure later. If an expected deployment descriptor is missing,

[JBoss-dev] CVS update: jboss-system/src/bin run.sh

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 01:53:29 Modified:src/bin run.sh Log: o don't need to be in bin/ dir to start anymore Revision ChangesPath 1.3 +1 -7 jboss-system/src/bin/run.sh Index: run.sh

[JBoss-dev] CVS update: contrib/jetty/src/resources/jetty-plugin/META-INF jboss-service.xml

2002-02-26 Thread Jason Dillon
User: user57 Date: 02/02/26 01:56:18 Modified:jetty/src/resources/jetty-plugin/META-INF jboss-service.xml Log: o ../ breaks things, I hope this is treated as a URL, else should use fil.sep* here instead Revision ChangesPath 1.23 +1 -1

[JBoss-dev] [ jboss-Change Notes-522893 ] Do not have to be in bin/ when starting

2002-02-26 Thread noreply
Change Notes item #522893, was opened at 2002-02-26 02:20 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=381174aid=522893group_id=22866 Category: None Group: v3.0 (Rabbit Hole) Status: Open Priority: 5 Submitted By: Jason Dillon (user57) Assigned to: Jason Dillon

Re: [JBoss-dev] CVS update: jboss-system/src/main/org/jboss/system/server ServerImpl.java ServerInfo.java ServerInfoMBean.java

2002-02-26 Thread Marcel Ammerlaan
Jason Dillon wrote: StreamHandlerFactory registered (but the URL class only tries to load resource handlers using Class.forName() and the system-classloader so that might not work with custom classloaders). We need to figure out why Class.forName() called from inside URL did not find

Re: [JBoss-dev] [Fwd: Embedable, ServerLoader, jboss-boot.jar, logging and more...]

2002-02-26 Thread Adrian Brock
Hi Jason, I've got a problem integrating JBossMX with your new Server code. In ServerLoader.load(ClassLoader) you construct a URLClassLoader and set it as the TCL (Thread class loader). This is for dynamically loading classes from configuration options. But Server.start() does not have this

[JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread noreply
Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Georg Schmid (giorgio42) Assigned

Re: [JBoss-dev] Long tmp deploy urls

2002-02-26 Thread David Jencks
On 2002.02.26 04:31:22 -0500 Jason Dillon wrote: These are murder when trying to debug something with deployment... do we really need this? --jason I think so. They got longer so security permissions were determinable. They also let you predict where your deployment package will end up.

[JBoss-dev] [ jboss-Bugs-522617 ] Redeploy broken with tmp/deploy changes

2002-02-26 Thread noreply
Bugs item #522617, was opened at 2002-02-25 12:15 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=522617group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 7 Submitted By: Scott M Stark (starksm) Assigned

Re: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread Adrian Brock
If we used ModelMBeans, the Attribute's desriptor could include a field runtimeConfigurable. The service deployer can then determine if a redeploy is required. Regards, Adrian |Why not make more usage of notifications here. Such that jetty could |send a notificatioin when it needs to be

RE: [JBoss-user] RE: [JBoss-dev] Tshirts at JavaOne FREE TRAINING

2002-02-26 Thread Jim Tyrrell
Go searhc for All your base belong to us at google. You will be busy for hours reading about it. The short answer is that is was a bad translation in an old Nintendo game. It then moved into Photoshoping All your bases belong to us all over pictures. This was really big over a year ago.

Re: [JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread Adrian Brock
Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=37668 aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Georg Schmid (giorgio42)

RE: [JBoss-dev] newbie question on log.trace

2002-02-26 Thread Hiram Chirino
Sounds like you need a custom log4j appender. Regards, Hiram From: marc fleury [EMAIL PROTECTED] To: Jason Dillon [EMAIL PROTECTED] CC: Jboss-Development@Lists. Sourceforge. Net [EMAIL PROTECTED] Subject: RE: [JBoss-dev] newbie question on log.trace Date: Tue, 26 Feb 2002 04:16:25 -0800

Re: [JBoss-dev] CVS update: jboss-system/src/main/org/jboss/system/serverServerImpl.java ServerInfo.java ServerInfoMBean.java

2002-02-26 Thread Hiram Chirino
StreamHandlerFactory registered (but the URL class only tries to load resource handlers using Class.forName() and the system-classloader so that might not work with custom classloaders). We need to figure out why Class.forName() called from inside URL did not find the class then. --jason I'm

RE: [JBoss-dev] Tshirts at JavaOne FREE TRAINING

2002-02-26 Thread Rhett Aultman
Definitely. I'd like to be able to display my support for JBoss in any way possible, especially since I'm still one of those punks trying to make his first contribs and having a t-shirt and/or stickers is an easy way to do that. ;) A friend of mine did a small sticker business a couple of

Re: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread David Jencks
On 2002.02.26 08:57:05 -0500 Adrian Brock wrote: If we used ModelMBeans, the Attribute's desriptor could include a field runtimeConfigurable. The service deployer can then determine if a redeploy is required. Regards, Adrian Yes. Also there is the choice of -change attribute value while

RE: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
|If we used ModelMBeans, the Attribute's desriptor |could include a field runtimeConfigurable. |The service deployer can then determine if a redeploy |is required. ohhh so pretty we will use modelMBeans very soon, if we could get you get to put something out marcf

Re: [JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread David Jencks
On 2002.02.26 09:12:21 -0500 Adrian Brock wrote: Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=37668 aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution:

RE: [JBoss-dev] We need more configurations in the distribution

2002-02-26 Thread Bill Burke
Another idea on this. Maybe it would also be useful to have a /lib directory under the default and minimal directories. And we guide people to put their application jars in there instead of jboss/lib/ext or jboss/lib. That way, jboss libraries are kept separate from application libraries. Or

RE: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
3 of 4 imho |Yes. Also there is the choice of |-change attribute value while mbean is started yes |-stop, change attribute value, start yes |-stop, destroy, create(with new values), start no (use below) |-stop, destroy, remove, install, create(with new valuew), start yes |These could

[JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread noreply
Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Georg Schmid (giorgio42) Assigned

Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread Dain Sundstrom
Cool idea to solve the class loading dependency, but I think we still need explicit dependency declarations. The problem I still see is the need to have some services started (i.e. initialized) before others (e.g. db driver setup before a ejb can deploy). Oh, I just thought of another

Re: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread David Jencks
On 2002.02.26 13:38:37 -0500 marc fleury wrote: 3 of 4 imho |Yes. Also there is the choice of |-change attribute value while mbean is started yes |-stop, change attribute value, start yes |-stop, destroy, create(with new values), start no (use below) I agree, just trying to

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread marc fleury
|Cool idea to solve the class loading dependency, but I think we still |need explicit dependency declarations. The problem I still see is the yes, that is still there, |need to have some services started (i.e. initialized) before others |(e.g. db driver setup before a ejb can deploy). | |Oh,

RE: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
David, bringing you to the training was the best thing ever, since then you have become quite the man ... |Right now I'm working on xdoclet tags xmbean xml (I want to get this in |xdoclet 1.1.2, this weekend) and xmbean modifications to go with improved |xmbean dtd. Then we can start

Re: [JBoss-dev] AAAHOOO JBoss in London!

2002-02-26 Thread Luke Taylor
marc fleury wrote: Ok, yes, it sounds like a corny song from the late 70's ... Hey don't knock it - Lee Ho Fooks actually had it in their window in Chinatown last time I looked: As featured in Warren Zevon's 'Werewolves of London'. Maybe you could hold your JBoss meal there this time ...

RE: RE: [JBoss-dev] notes on configuration

2002-02-26 Thread marc fleury
|This is unclear though, are you saying what should the service controller |do on a change? |if that is the question then the values should be | |state-action-on-update {KEEP-RUNNING| RE-START | RE-INSTANCIATE} hey supposedly JSR 111 deals with this? does it? the HP guys have been talking about

[JBoss-dev] [ jboss-Bugs-523030 ] java.io.NotSerializableException: org.jb

2002-02-26 Thread noreply
Bugs item #523030, was opened at 2002-02-26 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523030group_id=22866 Category: JBossSX Group: v2.4 (stable) Status: Open Resolution: None Priority: 5 Submitted By: Andreas Schouten (schouten_drkw) Assigned

[JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread noreply
Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Georg Schmid (giorgio42) Assigned

[JBoss-dev] [ jboss-Bugs-523060 ] EJB's in EAR files - Classpath Failure

2002-02-26 Thread noreply
Bugs item #523060, was opened at 2002-02-26 10:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523060group_id=22866 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jim Cook (oravecz) Assigned to: Nobody/Anonymous

[JBoss-dev] [ jboss-Bugs-523060 ] EJB's in EAR files - Classpath Failure

2002-02-26 Thread noreply
Bugs item #523060, was opened at 2002-02-26 10:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523060group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Deleted Resolution: Duplicate Priority: 5 Submitted By: Jim Cook (oravecz) Assigned

[JBoss-dev] [ jboss-Bugs-523060 ] EJB's in EAR files - Classpath Failure

2002-02-26 Thread noreply
Bugs item #523060, was opened at 2002-02-26 10:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523060group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Deleted Resolution: Duplicate Priority: 5 Submitted By: Jim Cook (oravecz) Assigned

[JBoss-dev] [ jboss-Bugs-511503 ] jboss 3.0 Performance

2002-02-26 Thread noreply
Bugs item #511503, was opened at 2002-01-31 16:02 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=511503group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: Fixed Priority: 5 Submitted By: Ken Sipe (kensipe) Assigned to:

[JBoss-dev] [ jboss-Bugs-523030 ] java.io.NotSerializableException: org.jb

2002-02-26 Thread noreply
Bugs item #523030, was opened at 2002-02-26 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523030group_id=22866 Category: JBossSX Group: v2.4 (stable) Status: Closed Resolution: None Priority: 5 Submitted By: Andreas Schouten (schouten_drkw)

[JBoss-dev] [ jboss-Bugs-521058 ] Argument type mismatch after redeploy

2002-02-26 Thread noreply
Bugs item #521058, was opened at 2002-02-21 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=521058group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Georg Schmid (giorgio42) Assigned

[JBoss-dev] Boot time , FAST

2002-02-26 Thread marc fleury
with a simple fix I added yesterday (making sure we don't cycle through the UCL iterator if we have the class) the boot time on my machine goes back down to 4 seconds which is on par (even a bit faster) than 2.4 I will commit my stuff as soon as I can resolve a few sillyness things on the JNP

[JBoss-dev] [ jboss-Bugs-523030 ] java.io.NotSerializableException: org.jb

2002-02-26 Thread noreply
Bugs item #523030, was opened at 2002-02-26 08:53 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523030group_id=22866 Category: JBossSX Group: v2.4 (stable) Status: Closed Resolution: Fixed Priority: 5 Submitted By: Andreas Schouten (schouten_drkw)

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread marc fleury
hmmm it is a bit trickier than that. Some of the parts of RMI RELY on the exception being thrown (looking for a skeleton for example). So we really need to throw that exception. The bottom line is that I guess the best we can do is wait for the end of a deployment. That makes the deployer

[JBoss-dev] [ jboss-Bugs-523060 ] EJB's in EAR files - Classpath Failure

2002-02-26 Thread noreply
Bugs item #523060, was opened at 2002-02-26 10:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detailatid=376685aid=523060group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Deleted Resolution: Duplicate Priority: 5 Submitted By: Jim Cook (oravecz) Assigned

[JBoss-dev] split Deployer/Auto-Deployer

2002-02-26 Thread marc fleury
Ok, It is ripe :) I remember reading some mails talking about Auto-Deployment separated from MainDeployer. I believe it is time to do that :) so if there is a taker... if not I might do it, marcf ___ Jboss-development mailing list [EMAIL

[JBoss-dev] Shutdown needs some cleanup

2002-02-26 Thread Scott M Stark
I'm seeing the MainDeployer still trying to to deploys during the shutdown sequence. Isn't this one of the first services stopped? 15:00:22,734 INFO [Server] Shutdown complete 15:00:22,734 INFO [STDOUT] Shutdown complete 15:00:22,734 ERROR [SARDeployer] operation failed

[JBoss-dev] I think we need our own MarshalledObject

2002-02-26 Thread Scott M Stark
The second bug related to class loading problems(#521058) is another problem that occurs when a MarshalledObject value is gotten and Class.forName(String, boolean, ClassLoader) is used. This time, the call occurs when a non-proxy class is being resolved and the code does not try to use the thread

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/ejbql Alternation.java ApproximateNumericToken.java Assembler.java Assembly.java AssemblySet.java DeepCloneable.java Empty.java ExactNumericToken.java InputParameter.java InputParameterState.java InputParameterToken.java Literal.java NumberState.java NumericLiteral.java Optional.java Parser.java QuoteState.java Repetition.java Sequence.java StringLiteral.java StringToken.java Symbol.java SymbolState.java SymbolToken.java Terminal.java Token.java Tokenizer.java TokenizerState.java WhitespaceState.java Word.java WordState.java WordToken.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:15:18 Removed: src/main/org/jboss/ejb/plugins/cmp/ejbql Alternation.java ApproximateNumericToken.java Assembler.java Assembly.java AssemblySet.java DeepCloneable.java Empty.java

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/ejbql AbstractSchema.java CMPField.java CMRField.java EJBQLParser.java EntityPathElement.java IdentifierManager.java PathElement.java SQLGenerator.java SQLTarget.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:15:19 Removed: src/main/org/jboss/ejb/plugins/cmp/jdbc/ejbql AbstractSchema.java CMPField.java CMRField.java EJBQLParser.java EntityPathElement.java IdentifierManager.java

RE: [JBoss-dev] I think we need our own MarshalledObject

2002-02-26 Thread marc fleury
|The first class loader from a non-system ClassLoader is |org.jboss.invocation.MarshalledInvocation which is loaded good catch. It reminds of the good ol' days with Rickard when he would say this is a bug in the JDK. Go right ahead then. marcf ___

[JBoss-dev] More Ear crap ..

2002-02-26 Thread Dave Smith
Ok what is the currennt status of the ear deployment in the latest head? I am using a hacked version of cactus where I replaced Class.forName() with Thread.currentThread.getContextClassLoader().loadClass(). My ear looks like 0 Tue Feb 26 17:58:22 EST 2002 META-INF/ 45 Tue Feb 26 17:58:22

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/bridge EntityBridgeInvocationHandler.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:24:53 Modified:src/main/org/jboss/ejb/plugins/cmp/bridge EntityBridgeInvocationHandler.java Log: Cleaned up exception handling. Revision ChangesPath 1.14 +52 -37

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/bridge CMPFieldBridge.java CMRFieldBridge.java EntityBridge.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:25:47 Modified:src/main/org/jboss/ejb/plugins/cmp/bridge EntityBridge.java Added: src/main/org/jboss/ejb/plugins/cmp/bridge CMPFieldBridge.java CMRFieldBridge.java Log: Minor changes for generic EJB-QL parsing.

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/bridge JDBCAbstractCMPFieldBridge.java JDBCCMPFieldBridge.java JDBCCMRFieldBridge.java JDBCEntityBridge.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:28:56 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc/bridge JDBCAbstractCMPFieldBridge.java JDBCCMPFieldBridge.java JDBCCMRFieldBridge.java JDBCEntityBridge.java Log: Added

Re: [JBoss-dev] split Deployer/Auto-Deployer

2002-02-26 Thread Jason Dillon
For 3.0? I sent mail about seperating this functionality into a DeploymentScanner interface, where concreate impls would be created in jboss-service.xml and call the correct MainDeployer ops when something changed. I was still letting the ideas cook some. This is part of the embeded

RE: [JBoss-dev] More Ear crap ..

2002-02-26 Thread marc fleury
take it out of webinf marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Dave |Smith |Sent: Tuesday, February 26, 2002 3:13 PM |To: [EMAIL PROTECTED] |Subject: [JBoss-dev] More Ear crap .. | | |Ok what is the currennt status of the ear deployment

Re: [JBoss-dev] Shutdown needs some cleanup

2002-02-26 Thread David Jencks
Oops, shutdown should also turn off the scan thread. Actually MainDeployer, being the first service registered with ServiceController, is the last stopped. I'll fix this. david jencks On 2002.02.26 18:05:54 -0500 Scott M Stark wrote: I'm seeing the MainDeployer still trying to to deploys

Re: [JBoss-dev] Boot time , FAST

2002-02-26 Thread Jason Dillon
Any thoughts to creating new UCL objects inside ServiceLibraries instead of having the UCL constructor add itself to the SL when created? This will make it more explicit for what is going on here as well as allow the parent cl to be passed in from the SL instead of using

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCCommandFactory.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:31:43 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCCommandFactory.java Log: Added new JBossQL and DynamicQL command factory methods. Revision ChangesPath 1.15 +11 -1

Re: [JBoss-dev] Shutdown needs some cleanup

2002-02-26 Thread Jason Dillon
Quick question... is there order to shutdown? If MBean A depends on B, then do we shutdown A first then B? --jason Scott M Stark wrote: I'm seeing the MainDeployer still trying to to deploys during the shutdown sequence. Isn't this one of the first services stopped? 15:00:22,734 INFO

Re: [JBoss-dev] notes on configuration

2002-02-26 Thread Jason Dillon
Again, why not use a notification here? If an attrib is exposed, then we have to poll. If the service sends a note, then we just sit until we get one... Or am I missing the point? --jason marc fleury wrote: |If we used ModelMBeans, the Attribute's desriptor |could include a field

[JBoss-dev] CVS update: jboss-system/src/main/org/jboss/deployment MainDeployer.java

2002-02-26 Thread David Jencks
User: d_jencks Date: 02/02/26 15:45:04 Modified:src/main/org/jboss/deployment MainDeployer.java Log: made MainDeployer stop scanning before it undeploys everything on shutdown. Revision ChangesPath 1.10 +4 -1

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCDynamicQLQuery.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:45:32 Added: src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCDynamicQLQuery.java Log: Initial revision of DynamicQl command which compiles and executes JBossQL at runtime. Revision ChangesPath 1.1

Re: [JBoss-dev] CVS update: jboss-system/src/main/org/jboss/system/server ServerImpl.java ServerInfo.java ServerInfoMBean.java

2002-02-26 Thread Jason Dillon
Source for Class.forName() shows that it calls getCallerClassLoader() which is a package private native method and does... well I haven't a clue. --jason Hiram Chirino wrote: StreamHandlerFactory registered (but the URL class only tries to load resource handlers using Class.forName() and

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCJBossQLQuery.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:48:58 Added: src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCJBossQLQuery.java Log: Initial revision of JBossQL query command. JBossQL is a superset of EJB-QL that in this intial revison adds support for ORDER BY.

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCEJBQLQuery.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:47:10 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCEJBQLQuery.java Log: Changed to use new JDBCEJBQLCompiler based on JavaCC. Revision ChangesPath 1.6 +25 -37

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCEJBQLCompiler.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:46:27 Added: src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCEJBQLCompiler.java Log: Compiles EJB-QL and JBossQl, which is a superset of EJB-QL, to SQL. Revision ChangesPath 1.1

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCLoadRelationCommand.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:51:03 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCLoadRelationCommand.java Log: Minor changes due to changes in CMRFieldBridge interface. Revision ChangesPath 1.15 +7 -7

Re: [JBoss-dev] Long tmp deploy urls

2002-02-26 Thread Jason Dillon
Well, it would be nice to not need them... seems like there has to be a better way to do this... what I don't know. Any way to trick java into thinking that the codebase is where the jar orginated from? --jason David Jencks wrote: On 2002.02.26 04:31:22 -0500 Jason Dillon wrote: These are

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCQueryManager.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:52:01 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCQueryManager.java Log: Added support for new DynamicQL and JBossQL queries. Revision ChangesPath 1.4 +12 -2

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCStartCommand.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:53:07 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCStartCommand.java Log: Minor changes due to changes in CMRFieldBridge interface. Revision ChangesPath 1.22 +4 -4

[JBoss-dev] [AUTOMATED] JBoss compilation failed

2002-02-26 Thread chris
= ==THIS IS AN AUTOMATED EMAIL - SEE http://www.lubega.com FOR DETAILS= = HERE ARE THE LAST 50 LINES OF THE LOG FILE symbol : class EJBQLParser location:

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCDynamicQLQueryMetaData.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:57:40 Added: src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCDynamicQLQueryMetaData.java Log: Initial revision of metadat for new DynamicQL syle queries. Revision ChangesPath 1.1

Re: [JBoss-dev] [Fwd: Embedable, ServerLoader, jboss-boot.jar, logging and more...]

2002-02-26 Thread Jason Dillon
In ServerLoader.load(ClassLoader) you construct a URLClassLoader and set it as the TCL (Thread class loader). This is for dynamically loading classes from configuration options. Actually this is Marc here... I can't take any credit for any CL stuff really. But Server.start() does not have

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCTypeFactory.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:55:46 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCTypeFactory.java Log: Added method to get type metadata. This is used by the EJB-QL compiler. Revision ChangesPath 1.10 +5 -1

Re: [JBoss-dev] notes on configuration

2002-02-26 Thread Andreas Schaefer
Hi I didn't follow the discussion but when you want to wait for an attribute to be changed you can use the Monitoring Service which sends you also a Notification but you can add this outside the MBean. Andy - Original Message - From: Jason Dillon [EMAIL PROTECTED] To: marc fleury

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCReadAheadMetaData.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 16:03:25 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCReadAheadMetaData.java Log: Added new constructor that takes all state info as parameters. Revision ChangesPath 1.6 +19 -1

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCJBossQLQueryMetaData.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 15:58:17 Added: src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCJBossQLQueryMetaData.java Log: Initial revison of metadata for new JBossQL queries. Revision ChangesPath 1.1

[JBoss-dev] Serializable Logger...

2002-02-26 Thread Jason Dillon
Any objection to making Logger serializable, using custom deserialization to restore the transient log4j category? --jason ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jboss/src/resources/org/jboss/metadata jbosscmp-jdbc_3_0.dtd

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 16:13:53 Modified:src/resources/org/jboss/metadata jbosscmp-jdbc_3_0.dtd Log: Added new jboss-ql and dynamic-ql elements. Made alias generation elements required. Added subquery-supported element. Revision ChangesPath 1.12

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCTypeMappingMetaData.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 16:05:42 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCTypeMappingMetaData.java Log: Added subquery-supported flag, which is used by EJB-QL compiler to determine if subqueries or left joins should be used.

Re: [JBoss-dev] Shutdown needs some cleanup

2002-02-26 Thread David Jencks
On 2002.02.26 18:35:03 -0500 Jason Dillon wrote: Quick question... is there order to shutdown? If MBean A depends on B, then do we shutdown A first then B? there are several orders: 1. all deployments undone in reverse order of deployment. 2. When an mbean stops, all mbeans that depend on

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCQueryMetaDataFactory.java

2002-02-26 Thread Dain Sundstrom
User: dsundstrom Date: 02/02/26 16:01:56 Modified:src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata JDBCQueryMetaDataFactory.java Log: Added support for DynamicQL and JBossQL queries. Added support for array parameters. Revision ChangesPath

  1   2   >