Re: ObjectMessage in C/C++

2009-11-08 Thread thinkbox
>> > Regards, >> >> > Nate >> >> > >> >> > On Jul 6, 2008, at 6:44 PM, Joshua Smith wrote: >> >> > >> >> >> ActiveMQ Users- >> >> >> >> >> >> I have a project coming up where we'll be using ActiveMQ as our JMS >> >> >> server >> >> >> between a Java application and a C/C++ application. I'd like to >> >> >> exchange >> >> >> ObjectMessages. Is there anything special (e.g. endian) that I need >> >> >> to be >> >> >> aware of? Does the C/C++ application have to have objects defined >> >> >> that are >> >> >> the equivalent of my Java objects? >> >> >> >> >> >> >> >> >> Thanks, >> >> >> Joshua Smith >> >> > >> >> > >> >> > >> >> >> > -- >> > Tim Bish >> > http://fusesource.com >> > http://timbish.blogspot.com/ >> > >> > >> > >> > >> > >> > > > -- View this message in context: http://old.nabble.com/ObjectMessage-in-C-C%2B%2B-tp18308791p26260417.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: ObjectMessage in C/C++

2009-11-05 Thread thinkbox
>> >> >> I have a project coming up where we'll be using ActiveMQ as our JMS >> >> server >> >> between a Java application and a C/C++ application. I'd like to >> >> exchange >> >> ObjectMessages. Is there anything sp

Re: ObjectMessage in C/C++

2008-07-06 Thread Joshua Smith
Thanks again Nathan. I'll give those references a look. Joshua Smith On 7/7/08, Nathan Mittler <[EMAIL PROTECTED]> wrote: > > Joshua, > The C++ application wouldn't consume a JMS ObjectMessage; rather, it would > have the message transformed to something it can consume, say XML. This > transform

Re: ObjectMessage in C/C++

2008-07-06 Thread Nathan Mittler
Joshua, The C++ application wouldn't consume a JMS ObjectMessage; rather, it would have the message transformed to something it can consume, say XML. This transformation process is where Apache Camel comes in. The ActiveMQ 5.x broker can embed Camel components that will allow you to defi

Re: ObjectMessage in C/C++

2008-07-06 Thread Joshua Smith
Thanks Nathan. I went and looked at the link. Could you describe how this works a little more? Is the C++ program doing something different or am I configuring ActiveMQ to do something different when the client is a C++ application? How does Camel fit into the picture? Thanks, Joshua Smith On 7/6

Re: ObjectMessage in C/C++

2008-07-06 Thread Nathan Mittler
ActiveMQ-CPP doesn't support ObjectMessages. If you're stuck sending ObjectMessages from Java, probably your best bet would be to use a Camel message translator in the broker (http://activemq.apache.org/camel/message-translator.html ). Regards, Nate On Jul 6, 2008, at 6:44 PM, Joshua Smith

ObjectMessage in C/C++

2008-07-06 Thread Joshua Smith
ActiveMQ Users- I have a project coming up where we'll be using ActiveMQ as our JMS server between a Java application and a C/C++ application. I'd like to exchange ObjectMessages. Is there anything special (e.g. endian) that I need to be aware of? Does the C/C++ application have to have objects de