Re: [JBoss-dev] User Transactions

2001-05-03 Thread Ole Husgaard
has some tests for stand-alone client UT, but some real-world testing would be nice too. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Fix proposal in ClientUserTransactionService.java

2001-06-12 Thread Ole Husgaard
, this service would not depend on the NamingService having been initialized. Best Regards, Ole Husgaard. Darius Davidavicius wrote: Hi all, I do testing Jboss 2.3 compiled with JDK1.4beta Problem: I need Jboss application naming service be not on default 1099 port because in my system we

Re: [JBoss-dev] RabbitHole branch created

2001-06-12 Thread Ole Husgaard
is stable after a few days of freeze, that becomes 2.4.0. Bugs still present there can be fixed in 2.4.1, 2.4.2 c) New, unstable (MAIN branbch) 2.5 series is used instead of the RabbitHole branch, working towards the 3.0 release. Best Regards, Ole Husgaard

Re: [JBoss-dev] soo... RMI-IIOP

2001-06-14 Thread Ole Husgaard
. If designed in from the start, I don't think it would complicate or slow down the invocation code. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] CVS update: jboss/src/etc class.java interface.java

2001-06-19 Thread Ole Husgaard
: /* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. * * Revisions: * * 2619 sparre: New place for revision history. */ Best Regards, Ole Husgaard marc fleury wrote: |Ok, but 2 spaces do not read well on a 1600x1200 21

Re: [JBoss-dev] how to spot a newbie coder?

2001-06-23 Thread Ole Husgaard
when it is factored out to somewhere else. Changing the factor is also harder, as you have to check if the factor is used in other places. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net

Re: [JBoss-dev] Reasons for using Explicit Imports?

2001-06-24 Thread Ole Husgaard
Hi, Another reason: It makes it easy for the code reader to quickly find out the package a particular class is in: You just search for the class name from the start of the source file. Best Regards, Ole Husgaard. Scott M Stark wrote: So you can know what is being used and in general wild

Re: [JBoss-dev] METHOD-INVOCATION

2001-06-27 Thread Ole Husgaard
() == TM.getTransaction() and MI.setTransaction() would be superfluous. What do you think? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] High load...

2001-06-27 Thread Ole Husgaard
at any time, XA is not really used, and the fact that the pool re-issues the same connection may make the fake XA work 100% of the time. But that really is a special case. Best Regards, Ole Husgaard. P.S: I also think that setting isolation levels per-pool is the right thing to do

Re: [JBoss-dev] High load...

2001-06-28 Thread Ole Husgaard
this and/or optimistic locking. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: AW: [JBoss-dev] METHOD-INVOCATION (introducing profiling support)

2001-06-29 Thread Ole Husgaard
to the caller (and we want that, we may want it even in case of exceptions), I guess that we have to package all invocation replies (return values and returned exceptions) into some return value object over the wire. Best Regards, Ole Husgaard. P.S: I'll better go nuke that TPC import in the MI now

Re: [JBoss-dev] High load...

2001-06-30 Thread Ole Husgaard
Hi, David Jencks wrote: On 2001.06.28 08:32:18 -0400 Ole Husgaard wrote: This algorithm may be fine, but it seems to be for commit option A only. As written, yes, as you point out below, reloading from db for each new transaction is necessary for B/C I think we should also consider

Re: [JBoss-dev] High load...

2001-06-30 Thread Ole Husgaard
Hi, Dan OConnor wrote: On 30 Jun 01, at 16:19, Ole Husgaard wrote: I have to warn against the obvious way of doing local transaction numbering: A server-wide WeakHashMap that maps Transaction to Integer. I wanted to ask about this... The JTA spec requires (in 3.3.4

[JBoss-dev] jbosstest automated testing: Test hangs not detected.

2001-06-30 Thread Ole Husgaard
timed out. I guess this implicates that hung or timed out tests are NOT detected by the automated testing. Unfortunately I am not very familiar with Ant, and cannot see how to detect an empty file from Ant. Any ideas anyone? Best Regards, Ole Husgaard

Re: [JBoss-dev] jbosstest automated testing: Test hangs not detected.

2001-07-01 Thread Ole Husgaard
in a multi-thread test, you can keep track of the number of threads started and done and only let the test end when all are done, like in the jbosstest bank test. But maybe I have misunderstood you; you probably already know that. Best Regards, Ole Husgaard. marc |-Original Message

Re: [JBoss-dev] jboss daily test results

2001-07-01 Thread Ole Husgaard
) Commit if no new failures. So those 10-15 minutes of step 2 are wasted on me reading /. :-( Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: AW: [JBoss-dev] METHOD-INVOCATION (introducing profiling support)

2001-07-01 Thread Ole Husgaard
Hi, Anatoly Akkerman wrote: On Sat, 30 Jun 2001, Ole Husgaard wrote: Are you talking about org.jboss.ejb.MethodInvocation? Why should that class be Serializable? It is only used locally on the server. It is indeed reconstructed from the transport layer representation of the invocation

Re: [JBoss-dev] FW: registerSync on rolledback transaction

2001-07-02 Thread Ole Husgaard
would be nice. Best Regards, Ole Husgaard. marcf |-Original Message- |From: marc fleury [mailto:[EMAIL PROTECTED]] |Sent: Monday, July 02, 2001 6:32 PM |To: [EMAIL PROTECTED] |Subject: registerSync on rolledback transaction | | |Hi, | |sorry if this has been addressed before

Re: [JBoss-dev] JSR-77 the 2 and 1/2

2001-07-05 Thread Ole Husgaard
. If you get the stats, and then reset them, any invocations between the two calls will neither be in this stats, or the next one - they will be utterly lost. Not a good thing, if your customer pays per bean invocation. Best Regards, Ole Husgaard. Andreas Schaefer wrote: Hi Geeks Just to give

Re: [JBoss-dev] Mail Delivery Status Notification

2001-07-08 Thread Ole Husgaard
Hi, Having these notifications broadcast to every recipient of large mailing lists is _very_ annoying, and I think it creates badwill for your company. Please fix, or I will have to blackhole mail sent from the trcinc.com domain. Best Regards, Ole Husgaard. Postmaster wrote: MAIL

Re: [JBoss-dev] Transactions and Optimization

2001-07-26 Thread Ole Husgaard
, and recompile. You are not trying to use UserTransaction in your web tier? I don't think that works, though it should not give this error. Anyway, if your transaction is propagated with an optimized local call, where and how do you start it? Best Regards, Ole Husgaard. Dan OConnor wrote: Hi guys

Re: [JBoss-dev] IIOP support

2001-07-28 Thread Ole Husgaard
the code to the web. Best Regards, Ole Husgaard. Francisco Reverbel wrote: Hello JBoss-ers, Is there anybody working on an IIOP plugin for JBoss? I have some ideas on this line and would like to know if somebody is already working on it. Thanks for such a great open-source EJB server

Re: [JBoss-dev] jbosscx transaction synchronization problem?

2001-07-29 Thread Ole Husgaard
time to read up on it. Best Regards, Ole Husgaard. David Jencks wrote: I should note that this error does not always happen on the first test run, but frequently, and I think always on the second or following. (using the swinguitestrunner) On 2001.07.28 14:59:26 -0400 David Jencks wrote

Re: [JBoss-dev] IIOP support

2001-07-29 Thread Ole Husgaard
Hi, Scott M Stark wrote: Put it into contrib/iiop if you want or I can put it on the sourceforge files page as an experimental project. Ok, I'll do that as soon as I have found out why my latest change makes it all non-working. Best Regards, Ole Husgaard

Re: [JBoss-dev] IIOP support

2001-07-29 Thread Ole Husgaard
/research etc). I do not think there is a high chance of duplicate work here, or I would have told the list earlier. What I am working on is pretty much the same as RMIC does, but without the code generation. Haven't looked into the container invoker stuff yet. Best Regards, Ole Husgaard

Re: [JBoss-dev] IIOP support

2001-07-29 Thread Ole Husgaard
container invoker for JBoss. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: contrib/iiop - Imported sources

2001-07-30 Thread Ole Husgaard
User: sparre Date: 01/07/30 10:07:24 Log: Import of preliminary IIOP support Status: Vendor Tag: SPARRE_IIOP Release Tags: PRELIMINARY_IIOP N contrib/iiop/JacORB.diff N contrib/iiop/README N contrib/iiop/jacorb.jar N contrib/iiop/jacorb.properties N

Re: [JBoss-dev] [OT] Java, threads and Linux... with jbosstest...

2001-07-31 Thread Ole Husgaard
at: http://people.redhat.com/alikins/system_tuning.html#threads Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] CVS update: contrib/iiop - Imported sources

2001-07-31 Thread Ole Husgaard
. Basically it is just an RMI/IIOP mapping, and some code for publishing the mapped metadata in the form of a CORBA interface repository. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop/rmi/ir ContainedImpl.java IDLTypeImpl.java IRObjectImpl.java InterfaceRepository.java RepositoryImpl.java

2001-07-31 Thread Ole Husgaard
@@ -23,7 +23,7 @@ * Abstract base class for all contained IR entities. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ abstract class ContainedImpl extends IRObjectImpl @@ -158,7 +158,7

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop CorbaORBService.java

2001-07-31 Thread Ole Husgaard
revision 1.2 diff -u -r1.1 -r1.2 --- CorbaORBService.java 2001/07/30 17:06:44 1.1 +++ CorbaORBService.java 2001/07/31 16:55:28 1.2 @@ -46,7 +46,7 @@ * for JBoss to use. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.1

Re: [JBoss-dev] IIOP support (fwd)

2001-07-31 Thread Ole Husgaard
Hi, Francisco Reverbel wrote: On Mon, 30 Jul 2001, Ole Husgaard wrote: Francisco Reverbel wrote: On Sun, 29 Jul 2001, Ole Husgaard wrote: I've now committed to CVS module contrib/iiop. Great! I've got it. So far I've looked mostly at the code in org.jboss.iiop.rmi.server code

Re: [JBoss-dev] jbosspool: implementation of connectionClosed() in org.jboss.pool.connector.BaseConnectionManager$XAListener

2001-08-01 Thread Ole Husgaard
() calls in a row. Best Regards, Ole Husgaard. Jung , Dr. Christoph wrote: I just stumbled over the following piece of code in org.jboss.pool.connector.BaseConnectionManager$XAListener: public void connectionClosed(ConnectionEvent evt) { ... // XAResource is delisted

Re: AW: [JBoss-dev] jbosspool: implementation of connectionClosed() in org.jboss.pool.connector.BaseConnectionManager$XAListener

2001-08-02 Thread Ole Husgaard
. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] jbosspool: implementation of connectionClosed() i n org.jboss.pool .connector.BaseConnectionManager$XAListener

2001-08-02 Thread Ole Husgaard
/transaction_service.htm It is free, and IMHO even closer to JTA than the X/Open DTP specification. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: AW: [JBoss-dev] jbosspool: implementation of connectionClosed() in org.jboss.pool .connector.BaseConnectionManager$XAListener

2001-08-02 Thread Ole Husgaard
, for example) and is not quite clear about it. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop/rmi/server InterfaceMapper.java OperationMapper.java ParameterMapper.java

2001-08-08 Thread Ole Husgaard
license. * See terms of license at gnu.org. @@ -22,7 +22,7 @@ * This is a RMI/IIOP metadata conversion utility class. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class InterfaceMapper

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop/rmi AbstractAnalysis.java AttributeAnalysis.java ClassAnalysis.java ConstantAnalysis.java ContainerAnalysis.java ExceptionAnalysis.java InterfaceAnalysis.java OperationAnalysis.java ParameterAnalysis.java PrimitiveAnalysis.java RMIIIOPNotImplementedException.java RMIIIOPValueNotSerializableException.java RMIIIOPViolationException.java Util.java ValueAnalysis.java ValueMemberAnalysis.java WorkCacheManager.java

2001-08-08 Thread Ole Husgaard
+17,7 @@ * Specification, version 1.1 (01-06-07). * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ abstract class AbstractAnalysis { 1.2 +2 -2 contrib/iiop/src/main/org

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop/rmi/ir AliasDefImpl.java AttributeDefImpl.java ConstantDefImpl.java ContainedImpl.java ContainerImpl.java ContainerImplDelegate.java ExceptionDefImpl.java IDLTypeImpl.java IRConstructionException.java IRObjectImpl.java InterfaceDefImpl.java InterfaceRepository.java LocalContained.java LocalContainedIDLType.java LocalContainer.java LocalIDLType.java LocalIRObject.java ModuleDefImpl.java OperationDefImpl.java PrimitiveDefImpl.java RepositoryImpl.java SequenceDefImpl.java TypedefDefImpl.java ValueBoxDefImpl.java ValueDefImpl.java ValueMemberDefImpl.java

2001-08-08 Thread Ole Husgaard
@@ -1,5 +1,5 @@ /* -* JBoss, the OpenSource EJB server +* JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. @@ -32,7 +32,7 @@ * AliasDef IR object. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop AbstractTestBase.java CorbaORBService.java CorbaORBServiceMBean.java Test.java TestBase.java TestException.java TestImpl.java TestValue.java TestValueBase.java

2001-08-08 Thread Ole Husgaard
=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class CorbaORBService extends ServiceMBeanSupport 1.2 +2 -2 contrib/iiop/src/main/org/jboss/iiop/CorbaORBServiceMBean.java Index

[JBoss-dev] CVS update: contrib/iiop patch.sh

2001-08-08 Thread Ole Husgaard
User: sparre Date: 01/08/08 14:23:47 Added: iiop patch.sh Log: Added a simple shell script for patching JBoss with the IIOP code. Revision ChangesPath 1.1 contrib/iiop/patch.sh Index: patch.sh

[JBoss-dev] CVS update: contrib/iiop patch.sh

2001-08-09 Thread Ole Husgaard
User: sparre Date: 01/08/09 06:16:38 Modified:iiop patch.sh Log: Need to copy jacorb.jar too. Revision ChangesPath 1.2 +2 -1 contrib/iiop/patch.sh Index: patch.sh === RCS file:

[JBoss-dev] CVS update: contrib/iiop patch.sh

2001-08-09 Thread Ole Husgaard
User: sparre Date: 01/08/09 07:19:02 Modified:iiop patch.sh Log: Another patch script fix. Also made the ORB class and ORB singleton class attributes of the MBean. Revision ChangesPath 1.3 +28 -7 contrib/iiop/patch.sh Index: patch.sh

[JBoss-dev] CVS update: contrib/iiop/src/main/org/jboss/iiop CorbaORBService.java CorbaORBServiceMBean.java

2001-08-09 Thread Ole Husgaard
1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CorbaORBService.java 2001/08/08 20:19:39 1.3 +++ CorbaORBService.java 2001/08/09 14:19:02 1.4 @@ -46,7 +46,7 @@ * for JBoss to use. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard

Re: [JBoss-dev] IIOP Container Invoker for JBoss

2001-08-10 Thread Ole Husgaard
in contrib/iiop/src/main/org/jboss/iiop/CorbaORBService.java. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: contrib/iiop patch.sh

2001-08-10 Thread Ole Husgaard
User: sparre Date: 01/08/10 11:35:06 Modified:iiop patch.sh Log: A small patch script change to make it easier to patch JBoss to use the JDK 1.4 ORB by default. Revision ChangesPath 1.4 +13 -2 contrib/iiop/patch.sh Index: patch.sh

Re: [JBoss-dev] JBoss TX Timeout Semantics

2001-08-19 Thread Ole Husgaard
the tx for rollback only, if the invocation does not return soon enough? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Lutris announcement: a further look

2001-09-16 Thread Ole Husgaard
server, I would be p*ssed, since the Enhydra license allows Lutris to do this. Fortunately this is not possible with JBoss, as it is under the LGPL license. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https

[JBoss-dev] What has happened to the Tyrex TM plugin?

2001-09-16 Thread Ole Husgaard
, or was it just a mistake? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jboss-j2ee/src/main/javax/transaction/xa package.html XAException.java XAResource.java Xid.java

2001-09-19 Thread Ole Husgaard
User: sparre Date: 01/09/19 16:29:04 Modified:src/main/javax/transaction/xa XAException.java XAResource.java Xid.java Added: src/main/javax/transaction/xa package.html Log: Some XA javadocs Revision ChangesPath 1.6 +149 -17

[JBoss-dev] CVS update: jboss-j2ee/src/main/javax/transaction HeuristicCommitException.java HeuristicMixedException.java HeuristicRollbackException.java InvalidTransactionException.java NotSupportedException.java RollbackException.java Status.java Synchronization.java SystemException.java Transaction.java TransactionManager.java TransactionRequiredException.java TransactionRolledbackException.java UserTransaction.java

2001-09-24 Thread Ole Husgaard
User: sparre Date: 01/09/24 09:39:32 Modified:src/main/javax/transaction HeuristicCommitException.java HeuristicMixedException.java HeuristicRollbackException.java InvalidTransactionException.java

[JBoss-dev] jboss test dependencies

2001-09-24 Thread Ole Husgaard
it be ok? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/resources/web index.html

2001-09-25 Thread Ole Husgaard
User: sparre Date: 01/09/25 11:07:20 Modified:src/resources/web index.html Log: Added a test for using UserTransaction in servlets. Revision ChangesPath 1.8 +3 -0 jbosstest/src/resources/web/index.html Index: index.html

[JBoss-dev] CVS update: jbosstest/src/resources/web/META-INF application.xml

2001-09-25 Thread Ole Husgaard
User: sparre Date: 01/09/25 11:07:20 Modified:src/resources/web/META-INF application.xml Log: Added a test for using UserTransaction in servlets. Revision ChangesPath 1.2 +4 -0 jbosstest/src/resources/web/META-INF/application.xml Index: application.xml

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/web/servlets UserTransactionServlet.java

2001-09-25 Thread Ole Husgaard
. * * Adapted from Scott Starks EJBServlet.java. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a * @version $Revision: 1.1 $ */ public class UserTransactionServlet extends HttpServlet { protected void processRequest(HttpServletRequest request

[JBoss-dev] CVS update: jbosstest/src/resources/web/WEB-INF web.xml

2001-09-25 Thread Ole Husgaard
User: sparre Date: 01/09/25 11:07:20 Modified:src/resources/web/WEB-INF web.xml Log: Added a test for using UserTransaction in servlets. Revision ChangesPath 1.16 +15 -0 jbosstest/src/resources/web/WEB-INF/web.xml Index: web.xml

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

2001-09-25 Thread Ole Husgaard
User: sparre Date: 01/09/25 11:07:11 Modified:.build.xml Log: Added a test for using UserTransaction in servlets. Revision ChangesPath 1.31 +3 -2 jbosstest/build.xml Index: build.xml

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

2001-09-25 Thread Ole Husgaard
User: sparre Date: 01/09/25 11:07:19 Modified:src/main/org/jboss/test/web/test WebIntegrationUnitTestCase.java Log: Added a test for using UserTransaction in servlets. Revision ChangesPath 1.4 +11 -1

Re: [JBoss-dev] jboss test dependencies

2001-09-25 Thread Ole Husgaard
://localhost:8080/; instead of the default null value? If I make these changes, my UserTransaction test fails as expected. Unfortunately also makes the testSnoopJSP, testClientLoginServlet, testSecureServlet, testSecureEJBAccess and testIncludeEJB tests fail. Best Regards, Ole Husgaard Scott M Stark

Re: [JBoss-dev] MDB non-xa cf tx timeout

2001-09-26 Thread Ole Husgaard
* seconds; to enforce widening _before_ the multiplication. Maybe Integer.MAX_VALUE/1000 is long enough for you until i get around to committing a fix? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https

Re: [JBoss-dev] hrm....

2001-09-26 Thread Ole Husgaard
higher than the expected lifetime of the server, but due to a bug in TxManager, it can currently not be set to values higher than about four years :-) Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https

Re: [JBoss-dev] jboss test dependencies

2001-09-26 Thread Ole Husgaard
to the value http://localhost:8080/;. Best Regards, Ole Husgaard. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Ole Husgaard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September

[JBoss-dev] CVS update: jboss/src/main/org/jboss/tm/usertx/client ServerVMClientUserTransaction.java ClientUserTransaction.java ClientUserTransactionObjectFactory.java

2001-09-26 Thread Ole Husgaard
@@ -46,7 +46,7 @@ * propagation contexts of the transactions started here. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class ClientUserTransaction implements UserTransaction, @@ -79,19

[JBoss-dev] CVS update: jboss/src/main/org/jboss/tm TxManager.java

2001-09-26 Thread Ole Husgaard
--- TxManager.java2001/08/11 02:38:33 1.32 +++ TxManager.java2001/09/26 21:01:24 1.33 @@ -35,7 +35,7 @@ * @author a href=mailto:[EMAIL PROTECTED];Marc Fleury/a * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a * @author a href=mailto:[EMAIL PROTECTED];Jason Dillon

[JBoss-dev] CVS update: jboss/src/main/org/jboss/tm TxManager.java

2001-09-26 Thread Ole Husgaard
PROTECTED];Marc Fleury/a * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.28 $ + * @version $Revision: 1.28.4.1 $ */ public class TxManager implements TransactionManager, @@ -254,7 +254,7 @@ */ public void

Re: [JBoss-dev] jboss test dependencies

2001-09-26 Thread Ole Husgaard
Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] MDB non-xa cf tx timeout

2001-09-26 Thread Ole Husgaard
heuristic decisions too soon. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jboss/src/main/org/jboss/tm/usertx/client ServerVMClientUserTransaction.java ClientUserTransaction.java ClientUserTransactionObjectFactory.java

2001-09-26 Thread Ole Husgaard
-r1.1.4.1 --- ClientUserTransaction.java2001/04/29 08:12:52 1.1 +++ ClientUserTransaction.java2001/09/27 03:48:49 1.1.4.1 @@ -46,7 +46,7 @@ * propagation contexts of the transactions started here. * * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard

Re: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-02 Thread Ole Husgaard
not restart the server. Guess that all classes have been loaded then. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [Fwd: [JBoss-dev] JMX service architecture: next gen++]

2001-10-02 Thread Ole Husgaard
reconfiguration easy. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-02 Thread Ole Husgaard
would have to be synchronized, and we would probably also have to synchronize on the instance variables classes, resources, clToClassSetMap and clToResourceSetMap, but these locks would not be held while ClassLoader.loadClassInternally() is called. Best Regards, Ole Husgaard

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/web/servlets UserTransactionServlet.java

2001-10-02 Thread Ole Husgaard
a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class UserTransactionServlet extends HttpServlet { @@ -46,7 +46,7 @@ // Get the UserTransaction UserTransaction ut; try

Re: AW: [JBoss-dev] CVS update: jboss/src/main/org/jboss/tm/usertx/client ServerVMClientUserTransaction.java ClientUserTransaction.java ClientUserTransactionObjectFactory.java

2001-10-02 Thread Ole Husgaard
Harald Gliebe wrote: Hi, Ole Husgaard wrote: Hi, I'm in a little over my head here, since i don't use web components or know that part of the JBoss code well. 2) A transaction that is started by a servlet or JSP page must be completed before the service method

Re: [JBoss-dev] java.lang.ClassLoader misery. Verify this patch!

2001-10-03 Thread Ole Husgaard
synchronization is already being done at a higher level. This is all a bit hairy, but the slowdown is almost only with the addition and removal of classloaders, and I don't expect that to happen often. Testing the code change as I write this. Best Regards, Ole Husgaard. Jung , Dr. Christoph

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

2001-10-03 Thread Ole Husgaard
; @@ -29,7 +28,8 @@ * * @see related * @author a href=mailto:[EMAIL PROTECTED];Marc Fleury/a - * @version $Revision: 1.4 $ p + * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a + * @version $Revision: 1.5 $ p * * b20010830 marc fleury:/b * ulinitial import

Re: [JBoss-dev] java.lang.ClassLoader misery. Verify this patch!

2001-10-03 Thread Ole Husgaard
commit seems to run fine, and fixes my problem. I'll do another commit if a few hours of testing is ok with the fix I am going to make for this (theoretical) race. Best Regards, Ole Husgaard. Ole Husgaard wrote: Hi, I just rewrote the locking in ServiceLibraries.java so that no locks

[Fwd: Re: [JBoss-dev] JMX service architecture: next gen++ [davidje ncks@directvinternet.com]]

2001-10-03 Thread Ole Husgaard
[Forwarding to the list. %#ยค% missing Reply-To: header] Original Message Subject: Re: [JBoss-dev] JMX service architecture: next gen++ [davidje [EMAIL PROTECTED]] Date: Wed, 03 Oct 2001 22:15:28 +0200 From: Ole Husgaard [EMAIL PROTECTED] Organization: Sparre Software To: David

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

2001-10-03 Thread Ole Husgaard
:47:10 1.5 +++ ServiceLibraries.java 2001/10/03 21:43:29 1.6 @@ -29,7 +29,7 @@ * @see related * @author a href=mailto:[EMAIL PROTECTED];Marc Fleury/a * @author a href=mailto:[EMAIL PROTECTED];Ole Husgaard/a - * @version $Revision: 1.5 $ p + * @version $Revision: 1.6

Re: [JBoss-dev] java.lang.ClassLoader misery. Verify this patch!

2001-10-03 Thread Ole Husgaard
Hi, I think I got the problem fixed with the CVS commit I made to the org.jboss.system.ServiceLibraries class. At least, I do not see classloader hangs any more when running the testsuite. Best Regards, Ole Husgaard. David Jencks wrote: Well I think maybe we can legally look at the code

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

2001-10-03 Thread Ole Husgaard
User: sparre Date: 01/10/03 16:05:53 Modified:.build.xml Log: Fixed dbtest ejb-jar file generation. Revision ChangesPath 1.36 +2 -2 jbosstest/build.xml Index: build.xml === RCS

[JBoss-dev] JBossMQ thread model

2001-10-04 Thread Ole Husgaard
) above. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

JBoss threads on Linux (Was: Re: [JBoss-dev] JBossMQ thread model)

2001-10-05 Thread Ole Husgaard
operations because it involves calls to the operating system. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: AW: [JBoss-dev] java.lang.ClassLoader misery. Verify this patch!

2001-10-05 Thread Ole Husgaard
, running without the java.lang.ClassLoader patch. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: AW: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-05 Thread Ole Husgaard
occur, CL1 must use CL2 to load C2, and CL2 must use CL1 to load C1. But that would mean that CL2 is a parent of CL1, and CL1 is a parent of CL2. I believe that circular class loader parentage is impossible in Java. Best Regards, Ole Husgaard. ___ Jboss

Re: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-05 Thread Ole Husgaard
. But they don't want patched Java libraries floating around the net, as it violates the _one Java_ principle. If we started redistributing CGJs patch with JBoss, I think SUN would ask us to stop that. If he included it with a bug report to them, I think they would like it. Best Regards, Ole

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

2001-10-05 Thread Ole Husgaard
User: sparre Date: 01/10/05 04:39:52 Modified:src/main/org/jboss/test/web/test WebIntegrationUnitTestCase.java Log: Fixed a simple compile error. Revision ChangesPath 1.8 +3 -3

Re: AW: AW: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-05 Thread Ole Husgaard
this strange feeling that I am overlooking something, as I dont see the circularity. Can the system class loader somehow end up calling the ServiceLibraries? Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/threadpool - New directory

2001-10-05 Thread Ole Husgaard
User: sparre Date: 01/10/05 12:32:33 jbossmq/src/main/org/jboss/mq/threadpool - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/server ClientConsumer.java

2001-10-05 Thread Ole Husgaard
User: sparre Date: 01/10/05 12:34:14 Modified:src/main/org/jboss/mq/server ClientConsumer.java Log: Created a thread pool with an embedded work queue for JBossMQ. And made the message pushers use it. Revision ChangesPath 1.7 +68 -49

Re: AW: AW: AW: [JBoss-dev] The rabbit has a bug in its pelt: org.jboss.system.URLClassLoader

2001-10-05 Thread Ole Husgaard
Simon suggested. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Is closing of JDBC connection after the JTS transaction has been committed valid?

2001-10-18 Thread Ole Husgaard
. Best Regards, Ole Husgaard. P.S: I'm not sure that is all that needs to be fixed here, looks like the connection is not removed from the rms map if the transaction is no longer active when the connection is closed. No big memory leak, since these connections are reused and then will drop the old

[JBoss-dev] Bug in cache

2001-10-18 Thread Ole Husgaard
method, I could fix this, and backport the fix to the stable series. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jboss/src/main/org/jboss/metadata EntityMetaData.java

2001-10-19 Thread Ole Husgaard
User: sparre Date: 01/10/19 14:49:30 Modified:src/main/org/jboss/metadata EntityMetaData.java Log: Non-clustered CMP entitybeans should not use the clustered container configuration. Revision ChangesPath 1.12 +2 -2

[JBoss-dev] Please run the test suite before committing.

2001-10-19 Thread Ole Husgaard
Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Please run the test suite before committing.

2001-10-20 Thread Ole Husgaard
suite - ready to cut-n-paste and edit to create tew tests and test suites. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Please run the test suite before committing.

2001-10-20 Thread Ole Husgaard
? Chances are higher that developers will run tests if it only takes a few minutes, and basic functionality testing is better than no testing at all. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https

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

2001-10-20 Thread Ole Husgaard
User: sparre Date: 01/10/20 15:25:59 Modified:src/main/org/jboss/test/mdb/test MDBUnitTestCase.java Log: Now catching deployment exceptions in setUp() and throwing it in testServerFound(). This way, a deployment failure does not result in an empty .xml file, making the test

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

2001-10-20 Thread Ole Husgaard
User: sparre Date: 01/10/20 15:25:58 Modified:src/main/org/jboss/test JBossTestCase.java Log: Now catching deployment exceptions in setUp() and throwing it in testServerFound(). This way, a deployment failure does not result in an empty .xml file, making the test case being

Re: [JBoss-dev] Please run the test suite before committing.

2001-10-20 Thread Ole Husgaard
are actually run before new code is committed. Best Regards, Ole Husgaard. ___ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development

Re: [JBoss-dev] Bug in TxCapsule.java for JBoss 3.0.4

2002-11-21 Thread Ole Husgaard
of resource use in the application. Best Regards, Ole Husgaard. Dan A. Dickey wrote: On Wednesday 13 November 2002 08:10 pm, David Jencks wrote: What is the bug and why does this patch change anything? Why do you think it won't cause equal and opposite bugs with other drivers? I haven't

  1   2   >