RE: activemq-cpp compilation warnings

2007-01-18 Thread Bish, Tim
Patches are always welcomed. Hi, Why isn't actviemq-cpp compiled with '-W -Wall' options? It's very useful, because default warning level for gcc is quite low. The problem is that while compiling code that uses cms/* headers with -W -Wall, number of warnings appears like that:

RE: activemq-cpp and openwire

2007-01-16 Thread Bish, Tim
Activemq CPP doesn't currently handle the openwire Protocol. We've been working on it slowly, but have had a lot of other issues to address for the 1.1 release which should greatly improve the library over the 1.0 release. -Original Message- From: Motl [mailto:[EMAIL PROTECTED] Sent:

RE: activemq-cpp and openwire

2007-01-16 Thread Bish, Tim
Not as yet. We are focused on getting 1.1 out the door first. I 've heard that full openwire support is declared for 2.0. Are there any approximate time frames for it? tabish121 wrote: Activemq CPP doesn't currently handle the openwire Protocol. We've been working on it

RE: active-cpp temporary queue problem

2006-12-22 Thread Bish, Tim
Stomp Doesn't currently support temporary queue's so you get that exception from amq cpp. -Original Message- From: amq user [mailto:[EMAIL PROTECTED] Sent: Friday, December 22, 2006 10:17 AM To: activemq-dev Subject: active-cpp temporary queue problem I have a very simple producer

RE: activemq-cpp failover?

2006-12-13 Thread Bish, Tim
The Connection object doesn't seems to throw exceptions. my code looks like this: class myProducer : public ExceptionListener, public Runnable { // Create a Connection connection = connectionFactory-createConnection();

RE: activemq-cpp, OpenWire protocol

2006-12-13 Thread Bish, Tim
-Original Message- From: Reptilmo [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 12:28 PM To: activemq-dev@geronimo.apache.org Subject: activemq-cpp, OpenWire protocol Any estimate how long before OpenWire protocol is finished or in some sort of working

RE: active-cpp persistent problem

2006-12-08 Thread Bish, Tim
AFAIK the activemq-cpp message do properly send the persistant flag. Can you create a small test app that demonstrates to problem? What are the steps you are currently following in both cases? Are you sending messages with the C++ client and they are not persistant when you restart and

RE: active-cpp persistent problem

2006-12-08 Thread Bish, Tim
What version of the broker are you using? Regards Tim -Original Message- From: amq user [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 2:37 PM To: activemq-dev@geronimo.apache.org Subject: Re: active-cpp persistent problem On 12/8/06, Bish, Tim [EMAIL PROTECTED

RE: active-cpp persistent problem

2006-12-08 Thread Bish, Tim
[EMAIL PROTECTED] wrote: ActiveMQ 4.0.2 and activemq-cpp-1.0 On 12/8/06, Bish, Tim [EMAIL PROTECTED] wrote: What version of the broker are you using? Regards Tim -Original Message- From: amq user [mailto:[EMAIL PROTECTED] Sent: Friday

RE: ActiveMQ CPP Change log.

2006-11-15 Thread Bish, Tim
How hard was it to build that change log? Would it make it simpler if the ActiveMQ cpp stuff it's own Jira space??? That would rock, as now we have issues from openwire-cpp etc mixing into ours.

Trying to use the new activemq-cpp makefiles, some issues remain for Solaris

2006-10-17 Thread Bish, Tim
Hiram. I've been hacking away trying to get a build on Solaris 10 using the newer automake stuff. So far I've had some success but still can't build the library. There seems to be some issues with the way sun has set things up on the sun box. I had to hack up a libstdc++.la as described in

RE: [activemq-cpp] It now compiles under cygwin

2006-10-05 Thread Bish, Tim
directory using ./autogen.sh but then do a: mkdr out cd out ../configure make On 10/5/06, Bish, Tim [EMAIL PROTECTED] wrote: Is there anyway that this build system can be modified to put the object files and other build artifacts into someplace other than the root dir of the code being

RE: [activemq-cpp] It now compiles under cygwin

2006-10-05 Thread Bish, Tim
activemq-cpp as now I have to use: ./configure --with-cppunit-prefix=/usr/local To let it know where cppunit is at (that's if I want to run the unit tests). On 10/3/06, Bish, Tim [EMAIL PROTECTED] wrote: AC_DEFUN is line 17 dnl AM_PATH_LIBMCRYPT([MINIMUM-VERSION

RE: [activemq-cpp] It now compiles under cygwin

2006-10-03 Thread Bish, Tim
There are some issues using the cygwin compiler, mainly that the tests won't pass as the sockets all break for strange reasons. Although Mingw isn't much better in this regard. It did also seem to have trouble compiling under cygwin on various machines for reason that I could never explain (oh

RE: [activemq-cpp] It now compiles under cygwin

2006-10-03 Thread Bish, Tim
BTW - Thanks for tackling this, both Nate and Myself are stretched pretty thing right now, so the extra hand is appreciated. Hey activemq-cpp folks. activemq-cpp should now compile fine under cygwin. You may need to install all the right versions of autoconf and automake. Tim.. any

RE: [activemq-cpp] It now compiles under cygwin

2006-10-03 Thread Bish, Tim
On 10/3/06, Bish, Tim [EMAIL PROTECTED] wrote: There are some issues using the cygwin compiler, mainly that the tests won't pass as the sockets all break for strange reasons. Although Mingw isn't much better in this regard. It did also seem to have trouble Yeah.. winsock sux. :) Yes

RE: [activemq-cpp] It now compiles under cygwin

2006-10-03 Thread Bish, Tim
AC_DEFUN is line 17 dnl AM_PATH_LIBMCRYPT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]]) dnl Test for libmcrypt, and define LIBMCRYPT_CFLAGS and LIBMCRYPT_LIBS dnl AC_DEFUN(AM_PATH_LIBMCRYPT, Change this line to: AC_DEFUN([AM_PATH_LIBMCRYPT], K, that got rid

RE: [activemq-cpp] It now compiles under cygwin

2006-10-03 Thread Bish, Tim
Then everything should work better out of the box. Including when we configure activemq-cpp as now I have to use: ./configure --with-cppunit-prefix=/usr/local To let it know where cppunit is at (that's if I want to run the unit tests). On 10/3/06, Bish, Tim [EMAIL PROTECTED] wrote

RE: Eclipse poject files for activemq-cpp

2006-10-02 Thread Bish, Tim
Hey C++ devs.. Do any of you have eclipse project files setup for the activemq-cpp module? I'd like to see if I can use the eclipse CDT to work with the project. Please check them in or send me a patch if you got them! I checked mine in; it may cause you more heartache using them than

RE: Openwire Generator Changes

2006-09-27 Thread Bish, Tim
Doh! I just got all my groovy scripts to generate C++ code that compiles :( Thanks for the heads up For all you who are interested in openwire... I have just checked in some changes for the openwire generators. They are now 100% java based. This should make them easier to grok and

RE: Openwire Generator Changes

2006-09-27 Thread Bish, Tim
and I'll convert them for ya. Regards, Hiram On 9/27/06, Bish, Tim [EMAIL PROTECTED] wrote: Doh! I just got all my groovy scripts to generate C++ code that compiles :( Thanks for the heads up For all you who are interested in openwire... I have just checked in some changes

RE: Openwire Generator Changes

2006-09-27 Thread Bish, Tim
those groovy scripts.. send them to me and I'll convert them for ya. Regards, Hiram On 9/27/06, Bish, Tim [EMAIL PROTECTED] wrote: Doh! I just got all my groovy scripts to generate C++ code that compiles :( Thanks for the heads up For all you who are interested

RE: activemq-cpp automake

2006-09-15 Thread Bish, Tim
Have you tested it? It doesn't seem to work for me. Are you planning to put the test suite compile into these makefiles? /usr/share/aclocal/pstoedit.m4:7: warning: underquoted definition of AM_PATH_PSTOEDIT run info '(automake)Extending aclocal' or see

RE: how to pass a integer value as a message header in STOMP C

2006-09-14 Thread Bish, Tim
Do you know if CMS client for activemq supports it? We provide a properties object that you can get from a Message object. The Properties Object allows you to set string properties (string key, string value). We also provide classes like Integer that define toString() methods. Or you can

RE: SVN Repository Reorganization

2006-09-06 Thread Bish, Tim
+1 for reorganizing +1 for putting all the C++ clients together in their own trunk I would also suggest getting rid of the CMS project altogether - this has been replaced by activemq-cpp Yeah, I've got a Jira issue to do this, just waiting to get SVN access. tabish121 wrote:

RE: openwire command generation

2006-08-23 Thread Bish, Tim
I think I've seen this before.. it's really weird.. but I think I have to do a mvn clean install in the generator project for it to install correctly. I did try that already, and unfortunately that doesn't seem to help. However if I nuke my entire maven repository and do an mvn install then it

RE: How To remove Queue from the session

2006-08-17 Thread Bish, Tim
I am working on openwire-cpp ( for ActiveMQ-4.0) code on SuSe(Linux machine-i686-suse-linux, version 2.6.13-15.8-default), in C++ . How to remove/deattached a queue from the session without closeing connection from the sender/reveiver side?. is it possible? Close the Consumer or Producer

RE: How To remove Queue from the session

2006-08-17 Thread Bish, Tim
When I use session-close() API then the following error comes up.. [FAILED] Message content has been corrupted Sounds like a possible bug in the openwire-cpp code. IF you can write a small test app that demonstrates the problem you could submit an issue and hopefully the openwire-cpp

RE: auto-generating documentation for C++ client?

2006-08-03 Thread Bish, Tim
Looks good guys, thanks for getting that setup. - Timothy A. Bish Sensis Corporation - -Original Message- From: Nathan Mittler [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 6:14 AM To:

RE: Regarding Multiple client in ActiveMQ for openwire-cpp API's

2006-08-01 Thread Bish, Tim
-Original Message- From: Arshad Ahamad [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 7:55 AM To: [EMAIL PROTECTED]; activemq-dev@geronimo.apache.org Subject: Re: Regarding Multiple client in ActiveMQ for openwire-cpp API's Hi James, I am working on openwire-cpp (

RE: auto-generating documentation for C++ client?

2006-08-01 Thread Bish, Tim
Great! :) How about submitting a patch to get the auto-generation working then we can look at automatically generating the documentation on a CI box or something? Alright, I submitted a new issue with the activemq-cpp updates, and a drop of the generated docs in it. Once that's

RE: auto-generating documentation for C++ client?

2006-08-01 Thread Bish, Tim
James I've cleaned up the activemq-cpp javadoc style documentation and now can run a clean doxygen run. I've generated docs for the current activemq-cpp code that looks pretty nice, all in HTML format. Question for you guys. I can submit the docs that I've got now attached to a JIRA issue so

RE: Problem in openwire-cpp API for messages

2006-07-26 Thread Bish, Tim
Are you talking about the initial size value? If so I submitted a patch yesterday that fixed the ByteArrayOutputStream's code that expands the buffer, so if you grab the latest code from SVN you shouldn't need to change the initial size value as the output stream should grow correctly now. If

RE: Problem in openwire-cpp API for messages

2006-07-26 Thread Bish, Tim
Ok, I will take a look and get back to you as soon as I can. - Timothy A. Bish Sensis Corporation - -Original Message- From: Arshad Ahamad [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 7:56

RE: Openwire CPP Client Help

2006-07-26 Thread Bish, Tim
To be honest my knowledge of the openwire-cpp code is limited. I've looked at it a little bit, and while the smart pointer code is scary, I have not seen anything that looks terribly wrong. To figure this out I'd have to spend time debugging and testing this code. I'm only working on this in

RE: CPP Client and Temporary Topics

2006-07-24 Thread Bish, Tim
It's a limitation of the Stomp Protocol, which is really intended to be used by simple clients. - Timothy A. Bish Sensis Corporation - -Original Message- From: kevinba [mailto:[EMAIL PROTECTED] Sent:

RE: ActiveMQ-cpp, Stomp, Openwire - need guidance here - newbie newbie

2006-07-24 Thread Bish, Tim
Comments inline: We need a MOM that provides C++ API support (ActiveMQ does this ... but i am a bit confused on ActiveMQ-cpp, stomp and openwire). I am running into questions like why openwire would replace stomp, activemq-cpp says it is swappable for both protocols. Openwire is the

RE: AMQ production status

2006-07-06 Thread Bish, Tim
Comments inline: Just out of curiosity, which Stomp C++ client did you try? The reason I ask is that we just submitted a replacement for the CMS client in activemq-cpp. This API does appear to have support for persistence, although I'm not sure that we have a unit test that verifies it