Re: JMSException: Timer already cancelled.

2019-11-19 Thread Christopher Mathrusse
Hi, > > same behavior using the tcp transport connector instead of vm and > advisory enabled ? > > I will try to reproduce tomorrow. > > Regards > JB > > On 19/11/2019 19:00, Christopher Mathrusse wrote: > > Hi JB, > > > > Yes, the broker d

Re: JMSException: Timer already cancelled.

2019-11-19 Thread Christopher Mathrusse
Chris, > > You are using tcp connection right ? > > What's the provider URL you are using in the connection factory ? > > In your activemq.xml scheduler support is enabled in the > element right ? > > Regards > JB > > On 19/11/2019 18:42, Christopher Ma

JMSException: Timer already cancelled.

2019-11-19 Thread Christopher Mathrusse
We are currently running ActiveMQ version 5.15.3 for our broker within a Docker container. The ActiveMQ client version was just upgraded to 5.15.10, but we were experiencing the issue prior to the upgrade when our client was running version 5.6. We are constantly experiencing communication failure

Re: Unable to build 5.0 source

2007-11-06 Thread Christopher . Mathrusse
I found the solution. It seems there was something odd about my maven repository (.m2/repository). I'm not certain what but I simply depleted it, cleaned the source directory and performed a build. Surprisingly everything worked this time. Chris Mathrusse [EMAIL PROTECTED] Sybase, Inc One Sybase

Re: Unable to build 5.0 source

2007-11-06 Thread Christopher . Mathrusse
This error seems to be associated to the activemq-tooling project. By removing this project from the pom.xml residing in the parent directory I was able to successfully get the project to compile. I did need to modify the MAVEN_OPTS beyond what was specified on the build page to the following: MA

Re: Unable to build 5.0 source

2007-11-05 Thread Christopher . Mathrusse
Oh how you got my hopes up that it was going to be that simple. I did find that my java.exe was in WINDOWS/system32 directory and it was version 1.6, so I deleted it. I made certain that my JAVA_HOME was pointing to my java 1.5 installation and that javac version was also 1.5. They both are. So I

Unable to build 5.0 source

2007-11-05 Thread Christopher . Mathrusse
I'm trying to build the 5.0 source from SVN but it continuously fails. The SVN URL that I am using is https://svn.apache.org/repos/asf/activemq/tags/activemq-5.0.0 I'm using maven with the method described on the build page: http://activemq.apache.org/building.html but each time I try to compi

RE: XATransaction

2007-04-23 Thread Christopher . Mathrusse
I'm currently using Bitronix Transaction Manager. (http://bitronix.be/) It is an open source transaction manager that is extremely stable. (Unlike JOTM) It implements the JTA completely and is very easy to configure and integrate with Spring. Plus you will not need to using Jenks. BTM is a co

RE: MDB in Spring

2007-03-26 Thread Christopher . Mathrusse
Here is an example from my applications configuration. It's rather simple. There is no MDB interface that needs to be implemented. I managed to implement this by looking through the Spring documentation. I'm using Bitronix as my Transaction Manager so the Connection Factory Bean is a BTM clas

RE: ActiveMQ with Sybase for persistence

2007-03-14 Thread Christopher . Mathrusse
Sure. I can give it a try and see if it works.   Thanks for the quick turn around on this. With a bit of luck all will work well. From: "James Strachan" <[EMAIL PROTECTED]> [mailto:"James Strachan" <[EMAIL PROTECTED]>] Sent: Wednesday, March 14, 2007 1:00 PMTo: "Christopher.MathrusseCc:

RE: ActiveMQ with Sybase for persistence

2007-03-14 Thread Christopher . Mathrusse
For a large integer you can use the numeric data type. Per the Sybase ASE documentation for ASE 12.5: http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/15426;pt=15426#X   Datatypes by category Synonyms Range

RE: ActiveMQ with Sybase for persistence

2007-03-13 Thread Christopher . Mathrusse
I've been trying to get this to work still and I now see an exception pertaining to BIGINT. It appears that Sybase ASE only began support for BIGINT in version 15. I'm stuck on 12.0.0.8. Any suggestions as to a workaround for this? Also I searched through the documentation on ASE 15 but foun

RE: ActiveMQ with Sybase for persistence

2007-03-13 Thread Christopher . Mathrusse
Looks like I still have problems. I downloaded the 4.2 that you sent me the link to (thank you) and I configured it for my data source. The problem is that my ASE is actually 12.0.0.8 and not 12.5. The SELECT WITH XLOCK raises an error. ASE complains about the WITH syntax.   Any suggestions

RE: ActiveMQ with Sybase for persistence

2007-03-13 Thread Christopher . Mathrusse
I looked over the examples and did not find one for Sybase. I did get the datasource configured and I can connect without any issues, but when ActiveMQ starts it performs a SELECT FOR UPDATE which causes an exception. I'll try the useDatabaseLock=false and see if it resolves it, but what are

RE: ActiveMQ with Sybase for persistence

2007-03-13 Thread Christopher . Mathrusse
12.5.1 does have SELECT FOR UPDATE but it can only be used on a CURSOR. From: Thomas Gagné <[EMAIL PROTECTED]> [mailto:Thomas Gagné <[EMAIL PROTECTED]>] Sent: Tuesday, March 13, 2007 7:24 AMTo: users@activemq.apache.orgSubject: Re: ActiveMQ with Sybase for persistence Which version? 12.5.

ActiveMQ with Sybase for persistence

2007-03-13 Thread Christopher . Mathrusse
Does anyone have a working example of using ActiveMQ with Sybase ASE as the persistence store? The online docs make mention that Sybase is supported but ASE does not support SELECT FOR UPDATE and I was wondering how to configure ActiveMQ so it will work.   Thanks