RE: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread marc fleury
Completion maybe??? What would it be and why is it interesting? KISS, Marcf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Dain Sundstrom Sent: Saturday, July 06, 2002 11:51 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev]

[JBoss-dev] Automated JBoss(Branch_3_0) Testsuite Results: 8-July-2002

2002-07-08 Thread scott . stark
Number of tests run: 668 Successful tests: 665 Errors:0 Failures: 3 [time of test: 8 July 2002 0:28 GMT] [java.version: 1.3.1] [java.vendor: Apple Computer, Inc.]

RE: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread Bill Burke
COMPLETION_MAYBE is when you are actually in the invocation of the bean and you really don't know how far the invocation got.(for clustering don't failover invocation because you may be in inconsistent state.) COMPLETION_NO means an exception/problem occured before the actual

[JBoss-dev] Seperating web ejb tiers.....

2002-07-08 Thread Jules Gosnell
Firstly, I'm fully conversant with the numerous reasons why running these two in the same VM might be advantageous, however, I am often asked how these can be run remotely from each other by users and I felt it was time I addressed the question. To do that I need some input from you guys

Re: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread Dain Sundstrom
Was this question to me? This is a simple feature the simply includes a string print of the stacktrace, because in JDK 1.3 the stacktrace is not sent to the client. It will be helpful for debugging RemoteExceptions on the client side; this is very simple code. -dain marc fleury wrote:

RE: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread marc fleury
COMPLETION_MAYBE is when you are actually in the invocation of the bean and you really don't know how far the invocation got.(for clustering don't failover invocation because you may be in inconsistent state.) Give me an example of being in the bean and not knowing how far the invocation

RE: [JBoss-dev] [ jboss-Bugs-578028 ] java.lang.ClassCircularityError: sun/ref

2002-07-08 Thread marc fleury
Ok clearly the workaround is not working on CCE, I believe I need to revisit this again, will try this week. We really need to put this one behind us, marcf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED] Sent: Saturday, July

RE: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread Bill Burke
it means that the invocation got to the bean but an exception/error was thrown in the middle of the actual invocation. So you could have a COMPLETION_YES if the invocation on the bean return but there was an error/exception thrown in the interceptor stack. -Original Message- From:

Re: [JBoss-dev] when will head be fixed?

2002-07-08 Thread Scott M Stark
A clean checkout is building for me. - Original Message - From: Bill Burke [EMAIL PROTECTED] To: Jboss-Dev [EMAIL PROTECTED] Sent: Saturday, July 06, 2002 4:48 PM Subject: [JBoss-dev] when will head be fixed? Is it already? ---

Re: [JBoss-dev] InvocationResponse and Exceptions

2002-07-08 Thread Ole Husgaard
marc fleury wrote: COMPLETION_MAYBE is when you are actually in the invocation of the bean and you really don't know how far the invocation got.(for clustering don't failover invocation because you may be in inconsistent state.) Give me an example of being in the bean and not knowing

[JBoss-dev] [ jboss-Patches-578737 ] Modifications to template project

2002-07-08 Thread noreply
Patches item #578737, was opened at 2002-07-08 18:02 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376687aid=578737group_id=22866 Category: None Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Sverker Abrahamsson (sverkera)

[JBoss-dev] [ jboss-Bugs-578028 ] java.lang.ClassCircularityError: sun/ref

2002-07-08 Thread noreply
Bugs item #578028, was opened at 2002-07-05 23:09 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=578028group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 6 Submitted By: T. Subramanian (t_subbu) Assigned

Re: [JBoss-dev] WHOEVER BROKE HEAD PLEASE FIX IT!!!!!!!!!!!!!!!

2002-07-08 Thread Dan Christopherson
Err. Uhmm. See, I'm not really american, ahhh... No, I'm like Canadian, eh? -danch (blushing in collective shame) Christian Riege wrote: hi, On Wed, 2002-07-03 at 23:24, James Mitchell wrote: ou pour nos amis hollandais Ich mag nackt (bildlich sprechend) in die Weiden der offenen Quelle

[JBoss-dev] [ jboss-Bugs-578771 ] web-inf directory in template projekt

2002-07-08 Thread noreply
Bugs item #578771, was opened at 2002-07-08 19:02 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=578771group_id=22866 Category: JBossDoc Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 5 Submitted By: Bjoern Dannemann (tekener) Assigned

[JBoss-dev] Problem with CHAR, CMP2.0 and the Firebird driver.

2002-07-08 Thread Ole Husgaard
Hi, (Please note that this problem could easily be avoided by using other types. But maybe a small change in the CMP engine and/or the Firebird driver would be better.) I'm using JBoss from CVS about a week old, and firebird-jca-jdbc-driver 1.0-beta-1. In my db, I have a column, defined as

[JBoss-dev] [ jboss-Bugs-578028 ] java.lang.ClassCircularityError: sun/ref

2002-07-08 Thread noreply
Bugs item #578028, was opened at 2002-07-06 11:09 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=376685aid=578028group_id=22866 Category: JBossServer Group: v3.0 Rabbit Hole Status: Open Resolution: None Priority: 6 Submitted By: T. Subramanian (t_subbu) Assigned

Re: [JBoss-dev] Problem with CHAR, CMP2.0 and the Firebird driver.

2002-07-08 Thread Ole Husgaard
Dain Sundstrom wrote: If you change the jdbc-type (not the sql-type) to VARCHAR, it should work for you. If the parameter type is a Character and the jdbc-type is a VARCHAR, the parameter is converted into a string before setting, and converted back into a character on get. This code was

Re: [JBoss-dev] Problem with CHAR, CMP2.0 and the Firebird driver.

2002-07-08 Thread Dain Sundstrom
Ole Husgaard wrote: Dain Sundstrom wrote: If you change the jdbc-type (not the sql-type) to VARCHAR, it should work for you. If the parameter type is a Character and the jdbc-type is a VARCHAR, the parameter is converted into a string before setting, and converted back into a character on

[JBoss-dev] Automated JBoss(Branch_3_0) Testsuite Results: 8-July-2002

2002-07-08 Thread scott . stark
Number of tests run: 668 Successful tests: 668 Errors:0 Failures: 0 [time of test: 8 July 2002 12:27 GMT] [java.version: 1.3.1] [java.vendor: Apple Computer, Inc.]

Re: [JBoss-dev] Problem with CHAR, CMP2.0 and the Firebird driver.

2002-07-08 Thread Ole Husgaard
Dain Sundstrom wrote: Is there any case where setting a String wouldn't work when a Character would? If not, we might as well always coerce Character to String. I don't know. Try changing the default jdbc-type for Firebird to VARCHAR and see if it works for Firebird. If it does

[JBoss-dev] JBoss 3.0 Quick Guide

2002-07-08 Thread Andreas Schaefer
Hi Geeks I am going to finish the JBoss 3.0 Quick Guide that can be found under http://sourceforge.net/project/showfiles.php?group_id=22866release_id=97289 So if you have feedback for it please send it directly to me. Note that the template project is a separate download just underneath the

Re: [JBoss-dev] inter-deployable dependencies... Branch_3_0

2002-07-08 Thread Jules Gosnell
David Jencks wrote: On 2002.07.08 18:33:36 -0400 Jules Gosnell wrote: I would like the Jetty service to have the use of some EJBs. I would like to package the ejb-jar in the jetty-plugin/jbossweb.sar I tried making the Jetty Service depend thus : !-- We need the DefaultDS DataSource