[JBoss-dev] Re: resource adapter

2002-01-09 Thread ramana
Hi, thank you for your reply. I am using JBoss-2.4.4 version. Here is resource adaptor part of jboss.jcml file.. mbean code=org.jboss.resource.ConnectionFactoryLoader name=JCA:service=ConnectionFactoryLoader,name=TestAdaptor attribute name=FactoryNameTestAdaptor/attribute

AW: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Jung , Dr. Christoph
Hi Richard ... AFAIK, if you serialise an exception, the stacktrace is serialised, too. So I do not understand your point ... CGJ -Ursprüngliche Nachricht- Von: Richard Kilgore [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 9. Januar 2002 05:47 An: JBoss Development Betreff:

[JBoss-dev] Re: resource adapter

2002-01-09 Thread ramana
I have solved the problem.. thanks... __ View this jboss-dev thread in the online forums: http://jboss.org/forums/thread.jsp?forum=66thread=6822 ___ Jboss-development mailing list

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Richard Kilgore
On Wed, Jan 09, 2002 at 01:29:30PM +0100, Jung , Dr. Christoph wrote: Hi Richard ... AFAIK, if you serialise an exception, the stacktrace is serialised, too. So I do not understand your point ... CGJ No, this is a pretty well-known obstacle in debugging RMI apps. The backtrace member of

[JBoss-dev] RH docs

2002-01-09 Thread Chris Richard
Sorry for posting here but I could not get any reply from EJB/General discussion forums. Is there any documentation on RH (3.0) architecture (or any previous discussion on its diff. from 2.4)? I thought there must be some mention in the book but that just contains 2.4 stuff. I suppose most of

AW: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Jung , Dr. Christoph
Now I remember ... We haven´t got a problem with this since all our application exceptions are derived from a top-level BusinessServiceException that prints a string-snapshot from the backtrace. That snapshot is taken if either printed or serialised ... The respective code comes even from me.

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread David Jencks
I think I'd find this handy also. In rh/3, I thought marc was going to change the interceptor config. method to be like other mbeans, which would let you change this setting while jboss was running (stop interceptor, change flag, restart). However this hasn't happend yet. david jencks On

Re: [JBoss-dev] RH docs

2002-01-09 Thread David Jencks
ch 3 of free manual covers jca/ db connectivity. dain and the cluster guys wrote some docs on their subjects you can buy. I started writing a bit about the sar/ mbean config but then marc completely changed it, so I'm waiting for it to settle down a little. david jencks On 2002.01.09 11:59:10

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Luke Taylor
Richard Kilgore wrote: On Wed, Jan 09, 2002 at 01:29:30PM +0100, Jung , Dr. Christoph wrote: Hi Richard ... AFAIK, if you serialise an exception, the stacktrace is serialised, too. So I do not understand your point ... CGJ No, this is a pretty well-known obstacle in debugging

[JBoss-dev] NoSuchMethodError in jboss.jetty.DistributedSessionManager

2002-01-09 Thread Alain Schaefer
hi, since a few days my small app doesnt work anymore on rh head. when trying to access any jsp i get the following exception. No error message is sent back to the browser, only an empty html-page. I do use struts tag-libs. I'm using the default configuration, so why does jboss try to Distribute

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread marc fleury
So you want to wrap any exception and propagate it to the client as a string and deserialize it on the client. This is client proxy work, not entirely transparent. In JBoss 3.0 there will be a way to specify the proxy factory that returns the java stubs you use, so I encourage you to make

Re: [JBoss-dev] RH docs

2002-01-09 Thread marc fleury
Rabbit hole will come with doco, I want to put the beta out soon, like next week before the Boston training marcf __ View this jboss-dev thread in the online forums: http://jboss.org/forums/thread.jsp?forum=66thread=6859

Re: [JBoss-dev] RH docs

2002-01-09 Thread Chris Richard
That's good news and I am really looking forward to it (for an upcoming project). What is it going to be like 1) volunteery unsupported doco. 2) a seperate paid doc. 3) update to 2.4Book PDF (the most useful to me). Thanks, Chris.

Re: [JBoss-dev] RH docs

2002-01-09 Thread marc fleury
we are trying to set up a program with Flashline where we would offer a subscription service that gives you access to all the documentation for a flat fee. The upgrade to the 2.4 documentation is just too much infrastructure for flashline it seems that for the next iteration already they have

[JBoss-dev] Am I a clown?

2002-01-09 Thread marc fleury
So I just spent 2 hours spotting the following interesting bug HashMap deployments ... Iterator it = deployments.keySet().iterator(); while (it.hasNext()); { do something(); } which would peg my CPU at 100% and never reach do something ... man I am a clown... can you see it? 2 hours! marcf

Re: [JBoss-dev] Am I a clown?

2002-01-09 Thread Chris Winters
On Wed, 2002-01-09 at 15:11, marc fleury wrote: So I just spent 2 hours spotting the following interesting bug HashMap deployments ... Iterator it = deployments.keySet().iterator(); while (it.hasNext()); { do something(); } which would peg my CPU at 100% and never reach do

Re: [JBoss-dev] Am I a clown?

2002-01-09 Thread Dave Smith
Putting on his big shoes ... HashMap is not syncnronized, possible another thread is modifing the HashMap? or You are modifing the set inside the loop? marc fleury wrote: So I just spent 2 hours spotting the following interesting bug HashMap deployments ... Iterator it =

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread Scott Sanders
KISS (Krikey It's the Semicolon Silly) Scott -Original Message- From: Dave Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 12:43 PM To: marc fleury Cc: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] Am I a clown? Putting on his big shoes ... HashMap is not

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread marc fleury
nope that's not it... 2 hours I stared at it... come on come on, it is so obvious, damn semicolons... marcf |-Original Message- |From: Dave Smith [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, January 09, 2002 12:43 PM |To: marc fleury |Cc: [EMAIL PROTECTED] |Subject: Re: [JBoss-dev]

Re: [JBoss-dev] Am I a clown?

2002-01-09 Thread danch
See, that's the problem with smart people; they think way too hard! Dave Smith wrote: Putting on his big shoes ... HashMap is not syncnronized, possible another thread is modifing the HashMap? or You are modifing the set inside the loop? marc fleury wrote: So I just spent 2 hours

[JBoss-dev] Thanks for help

2002-01-09 Thread John Woo
Thank so much on helpful talk from about new jboss 3.0 (RABBITS HOLES). I try 3.0. I think it will be most powerful when done(make your time!) I go away, but want to make contribution to upcoming jboss book. Please you look at idea for jboss book cover:

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread EvilJohn
I hate when I do things like that. Usually it means its time to stop drinking, or really start pounding down the beer. while (it.hasNext()); // this is the same as while(it.hasNext()) {}; { // NOT LOOPED because of the previous line's ';' teminates the code block for the while loop

RE: [JBoss-dev] Thanks for help

2002-01-09 Thread Bill Burke
Thanks John, I had a good laugh. Are you the guy that was swearing before on the email lists saying JBoss sucks? Man, get a life -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John Woo Sent: Wednesday, January 09, 2002 3:54 PM To: [EMAIL

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread marc fleury
yes; yes; that's; not; it; oh come on; don't you see it; I didn't for 2 hours so its ok you got 2 hours to see it ;) marcf |-Original Message- |From: Day, Jem BGI WAC [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, January 09, 2002 1:09 PM |To: 'marc fleury' |Cc: [EMAIL PROTECTED]

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread John Woo
A semi-colon on the end of the while. --- marc fleury [EMAIL PROTECTED] wrote: yes; yes; that's; not; it; oh come on; don't you see it; I didn't for 2 hours so its ok you got 2 hours to see it ;) marcf |-Original Message- |From: Day, Jem BGI WAC [mailto:[EMAIL

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread marc fleury
yep.. and I pride myself of being one of the best jave developers of my generation... but u well never mind, I booboo like everyone else it seems, so much for self esteem marcf |-Original Message- |From: John Woo [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, January 09, 2002 1:16

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread Day, Jem BGI WAC
The obvious question is. Are you doing an it.next() in the loop anywhere? ;-) -Original Message- From: marc fleury [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 3:56 PM To: Dave Smith Cc: [EMAIL PROTECTED] Subject: RE: [JBoss-dev] Am I a clown? nope that's not

Re: [JBoss-dev] Am I a clown?

2002-01-09 Thread Rickard
marc fleury wrote: So I just spent 2 hours spotting the following interesting bug HashMap deployments ... Iterator it = deployments.keySet().iterator(); while (it.hasNext()); { do something(); } which would peg my CPU at 100% and never reach do something ... man I am a

[JBoss-dev] CVS update: jboss/src/main/org/jboss/util Scheduler.java

2002-01-09 Thread Andreas Schaefer
User: schaefera Date: 02/01/09 13:49:11 Modified:src/main/org/jboss/util Scheduler.java Log: Revision ChangesPath 1.14 +10 -6 jboss/src/main/org/jboss/util/Scheduler.java Index: Scheduler.java

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Wim De Clercq
FYI in J2SE 1.4: Server-side Stack Traces Now Retained in Remote Exceptions The RMI runtime implementation will now preserve the server-side stack trace information of an exception that is thrown from a remote call, in addition to filling in the client-side stack trace as it did previous

RE: [JBoss-dev] Am I a clown?

2002-01-09 Thread Ignacio Coloma
Have you thought about using JPDA? This concrete one shouldn't have last so much. Sometimes itself is a pain in the ass, though :) -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de marc fleury Enviado el: miercoles, 09 de enero de 2002 23:56 Para:

[JBoss-dev] Scheduler Bug

2002-01-09 Thread Andreas Schaefer
Hi Geeks I am half-way back and fixed today the bug with the Scheduler on RH. Tomorrow I will add it to Branch 2.4. Thanx for all persistent guys pointing to the exception which in my tests were missed. I started to created a TestSuite for the Scheduler and during January will finish it

RE: [JBoss-dev] how to add new test to nightly testsuite?

2002-01-09 Thread Bill Burke
Figured it out. Thanks anyways -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Bill Burke Sent: Wednesday, January 09, 2002 5:08 PM To: Jboss-Dev (E-mail) Subject: [JBoss-dev] how to add new test to nightly testsuite? Is there anything

[JBoss-dev] CVS update: jbossmx/src/main/org/jboss/ha/hasessionstate/interfaces HASessionState.java

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:22:53 Modified:src/main/org/jboss/ha/hasessionstate/interfaces HASessionState.java Log: ripped out SubPartitioning for now. Subpartitioning will eventually move to HAPartition class Revision ChangesPath 1.3

[JBoss-dev] CVS update: jboss/src/main/org/jboss/proxy/ejb StatefulSessionProxy.java

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:23:51 Modified:src/main/org/jboss/proxy/ejb StatefulSessionProxy.java Log: invoker is now stored directly in StatefulHandleImpl. Otherwise, StatefulHandleImpl would not create EJBObjects that can get clustering attributes. Revision

[JBoss-dev] CVS update: jboss/src/main/org/jboss/proxy/ejb/handle StatefulHandleImpl.java

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:24:00 Modified:src/main/org/jboss/proxy/ejb/handle StatefulHandleImpl.java Log: invoker is now stored directly in StatefulHandleImpl. Otherwise, StatefulHandleImpl would not create EJBObjects that can get clustering attributes. Revision

[JBoss-dev] CVS update: jbosstest/src/resources/testbeancluster - New directory

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:25:46 jbosstest/src/resources/testbeancluster - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/testbeancluster - New directory

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:24:29 jbosstest/src/main/org/jboss/test/testbeancluster - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/testbeancluster/test - New directory

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:24:41 jbosstest/src/main/org/jboss/test/testbeancluster/test - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/testbeancluster/test BeanUnitTestCase.java

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:25:27 Added: src/main/org/jboss/test/testbeancluster/test BeanUnitTestCase.java Log: tests a clustered configuration with only 1 VM, Basically inherits everything from testbean Revision ChangesPath 1.1

[JBoss-dev] CVS update: jbosstest/src/resources/testbeancluster jndi.properties client.policy

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:27:25 Added: src/resources/testbeancluster jndi.properties client.policy Log: tests a clustered configuration with only 1 VM, Basically inherits everything from testbean Revision ChangesPath 1.1

Re: [JBoss-dev] RH docs

2002-01-09 Thread Peter Fagerlund
Yes - a wallet componenet followed with a RT CC Processor Servive ... Is something others can match ... Wallet would be a persistent store called with wallet.add(002$) call --from whatever service --- in a jboss container ... /peter_f RT = Real Time == danger === oki - so `CRT´ \close to real

[JBoss-dev] CVS update: jbossmx/src/main/org/jboss/ha/hasessionstate/server HASessionStateServiceMBean.java HASessionStateService.java HASessionStateImpl.java

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:22:43 Modified:src/main/org/jboss/ha/hasessionstate/server HASessionStateServiceMBean.java HASessionStateService.java HASessionStateImpl.java Log: ripped out SubPartitioning for now.

[JBoss-dev] CVS update: jbosstest/src/resources/testbeancluster/META-INF - New directory

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:49:48 jbosstest/src/resources/testbeancluster/META-INF - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/resources/testbeancluster/META-INF jboss.xml ejb-jar.xml

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:50:14 Added: src/resources/testbeancluster/META-INF jboss.xml ejb-jar.xml Log: tests a clustered configuration with only 1 VM, Basically inherits everything from testbean Revision ChangesPath 1.1

[JBoss-dev] CVS update: jbosstest build.xml

2002-01-09 Thread Bill Burke
User: patriot1burke Date: 02/01/09 15:49:34 Modified:.build.xml Log: tests a clustered configuration with only 1 VM, Basically inherits everything from testbean Revision ChangesPath 1.57 +20 -0 jbosstest/build.xml Index: build.xml

[JBoss-dev] Automated JBoss Testsuite Results

2002-01-09 Thread chris
JBoss daily test results SUMMARY Number of tests run: 268 Successful tests: 266 Errors:0 Failures: 2 [time of test: 10 January 2002 2:52 GMT] [java.version:

[JBoss-dev] Automated JBoss Testsuite Results

2002-01-09 Thread chris
JBoss daily test results SUMMARY Number of tests run: 268 Successful tests: 267 Errors:0 Failures: 1 [time of test: 10 January 2002 4:8 GMT] [java.version:

[JBoss-dev] Re: Auto Deployer

2002-01-09 Thread Adrian Brock
Forgot to mention, I could just keep the ArrayList and compare the urls, except url.equals(Object) potentially is a blocking operation. I'll do it by comparing url.toString() for now until somebody has some better thoughts. Regards, Adrian

[JBoss-dev] Automated JBoss Testsuite Results

2002-01-09 Thread chris
JBoss daily test results SUMMARY Number of tests run: 268 Successful tests: 267 Errors:0 Failures: 1 [time of test: 10 January 2002 4:56 GMT] [java.version:

Re: [JBoss-dev] Re: preserve exception backtrace for client

2002-01-09 Thread Adrian Brock
As somebody on /. might moderate INFORMATIVE. Regards, Adrian __ View this jboss-dev thread in the online forums: http://jboss.org/forums/thread.jsp?forum=66thread=6792 ___

Re: [JBoss-dev] NoSuchMethodError in jboss.jetty.DistributedSessionManager

2002-01-09 Thread Jules Gosnell
Have you specified in your web.xml that your webapp should be distributed ? I suspect so. I shall try to fix this this evening. If you alter your web.xml for the moment so that the webapp is not distributed, things should get back to normal. Thanks for pointing this one out. Jules Alain