porting c client to arm9 processor

2009-08-20 Thread dfmaus
Has anyone ported the openwire c client to any embedded processors? I'm experimenting with a busybox implementation, running on an ARM9 processor. I'm trying to free our current architecture from MQ-series -- View this message in context: http://www.nabble.com/porting-c-client-to-arm9-processo

Re: ActiveMQ Brokers using HTTP to communicate

2009-08-20 Thread lyall
Excellent. I have the two brokers talking using http using the configuration settings, shown below. I have disabled multicast as I only want the two to communicate using port 80. Thank you. http://0.0.0.0:80"/>

AjaxServlet IllegalArgumentException: setAttribute: Non-serializable attribute

2009-08-20 Thread gerryscat
I'd like my webpage to receive messages via the Ajax plugin, so I'm trying to use the demo code in my environment. The demo works for me (as long as I use 2 browsers, not 2 tabs with one browser). On the webpage the javascript call to amq.addPollHandler(portfolioPoll) is made, invoking AjaxServl

Messages are left in memory with JDBC persistance for queues when no consumers

2009-08-20 Thread chrajanirao
Hi, I have noticed that ActiveMQ is keeping the List of Message objects in memory after persisting them in the DB when there is no consumer on the queue. What I did is a simple test, I kept on sending persistent messages to a queue with no active consumers. The broker kept on using more memory an

Problem integrating with JBoss 4.2.3.GA

2009-08-20 Thread leiolay2004
Hi, I have spent a few days trying to figure out the following error. I must be missing some configuration steps. Any suggestion would be appreciated! 15:52:43,276 WARN [JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.jmsactivations...@1cb514c(ra=org.jboss.resour

Re: activeMQ 5.3-SNAPSHOT & org.apache.commons.net.ftp v2

2009-08-20 Thread ffrenchm
Hello, For the optional package I was speaking about spring.beans... Sorry for misunderstanding ;) ++ Dejan Bosanac wrote: > > Hi, > > I don't see that commons-net is declared as optional package (both in pom > and in jar's manifest). > > BTW. I added it to the lib/optional distribution fo

Re: NMS durable consumer not durable

2009-08-20 Thread Alistair Young
ok thanks - it's specifically the STOMP that breaks. Works ok with "normal". Alistair -- mov eax,1 mov ebx,0 int 80h On 20 Aug 2009, at 14:36, Timothy Bish wrote: On Thu, 2009-08-20 at 14:32 +0100, Alistair Young wrote: Looking at this with jconsole: IMessageConsumer consumer = sessio

Re: NMS durable consumer not durable

2009-08-20 Thread Timothy Bish
On Thu, 2009-08-20 at 14:32 +0100, Alistair Young wrote: > Looking at this with jconsole: > > IMessageConsumer consumer = > session.CreateDurableConsumer(session.GetTopic("test.t"), > "ConsumerId", "2 > 1", false); > > results in a non durable subscription with an ActiveMQ generated > consu

Re: NMS durable consumer not durable

2009-08-20 Thread Alistair Young
Looking at this with jconsole: IMessageConsumer consumer = session.CreateDurableConsumer(session.GetTopic("test.t"), "ConsumerId", "2 > 1", false); results in a non durable subscription with an ActiveMQ generated consumer ID. The topic has a durable subscription created by code I wrote

Re: PERL/STOMP: MapMessages

2009-08-20 Thread nmittal
Perfect that worked. thanks Dejan. Dejan Bosanac wrote: > > Try putting Jettison in your broker's classpath (lib/ or lib/optional). > > Cheers > -- > Dejan Bosanac > > Open Source Integration - http://fusesource.com/ > ActiveMQ in Action - http://www.manning.com/snyder/ > Blog - http://www.ni

Re: PERL/STOMP: MapMessages

2009-08-20 Thread Dejan Bosanac
Try putting Jettison in your broker's classpath (lib/ or lib/optional). Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Thu, Aug 20, 2009 at 3:03 PM, nmittal wrote: > > I tried... >

Re: PERL/STOMP: MapMessages

2009-08-20 Thread nmittal
I tried... $stomp->subscribe( { destination => '/queue/Queue.Emails', 'ack' => 'client', 'activemq.prefetchSize' => 1, 'transformation' => 'jms-map-json' } ); but my client kept waiting.. however, when I do... $stomp->s

Re: CMS:Synchronous Request Response

2009-08-20 Thread nmittal
Thanks Tim, I am working on implementing this. I will let you know how it goes. thanks Nishant Timothy Bish wrote: > > On Wed, 2009-08-19 at 10:16 -0700, nmittal wrote: >> I am using CMS for ActiveMQ to implement request-response. I understand >> from >> the examples how to do asynchronous re

Re: PERL/STOMP: MapMessages

2009-08-20 Thread Dejan Bosanac
Yup, you can use jms-map-xml (or json), jms-object-xml (or json) and jms-byte Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Thu, Aug 20, 2009 at 2:48 PM, nmittal wrote: > > That w

Re: activeMQ 5.3-SNAPSHOT & org.apache.commons.net.ftp v2

2009-08-20 Thread Dejan Bosanac
Hi, I don't see that commons-net is declared as optional package (both in pom and in jar's manifest). BTW. I added it to the lib/optional distribution folder Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http:

Re: PERL/STOMP: MapMessages

2009-08-20 Thread nmittal
That was it, I wasnt using any transformation. Now i see the body as XML.. thanks a lot Dejan. Also, is there a jms-map-json? thanks again Nishant Dejan Bosanac wrote: > > Hi, > > I'm not sure your Perl client supports messages transformation, but you > have > to add "transformation" header

Bitronix throwing exception on shutdown

2009-08-20 Thread michaelcouck
Hi, I have Bitronix and Spring managing the transactions for the db and ActiveMQ. On shutdown there are all sorts of exceptions being thrown when Spring and Bitronix try to delist resources. I realize that this is probably a Spring Bitronix issue but I am sure someone here has seen this before. T

NMS durable consumer not durable

2009-08-20 Thread Alistair Young
I know the topic has persistent messages as the ActiveMQCPP stuff works ok, picking up messages it's missed. The NMS one doesn't though: Uri connectURI = new Uri("activemq:tcp://host.com:61613? transport.wireformat=stomp"); IConnectionFactory factory = new ConnectionFactory(connectURI, "test-

Re: Scaling and tuning issues

2009-08-20 Thread Dejan Bosanac
Hi, you can find some information on ActiveMQ performance here in this whitepaper (http://fusesource.com/open_source/activemq-performance/ - http://fusesource.com/collateral/23 Also be sure to check out this webinar https://event.on24.com/eventRegistration/EventLobbyServlet?target=registration.j

Re: How to add a TransportListener in spring.

2009-08-20 Thread Dejan Bosanac
Hi, just use an IP address of the remote server instead of 'localhost'. Cheers -- Dejan Bosanac Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Thu, Aug 20, 2009 at 9:06 AM, dirful_zone wrote: > > Hi,this

Re: ActiveMQ Brokers using HTTP to communicate

2009-08-20 Thread Dejan Bosanac
Hi, you need to start transport connectors as well. Take a look at these configurations used in a test case for example http://fisheye6.atlassian.com/browse/activemq/trunk/activemq-core/src/test/resources/org/apache/activemq/usecases/sender-http.xml?r=HEAD http://fisheye6.atlassian.com/browse/ac

Re: PERL/STOMP: MapMessages

2009-08-20 Thread Dejan Bosanac
Hi, I'm not sure your Perl client supports messages transformation, but you have to add "transformation" header to your subscribe frame (such as 'transformation' => 'jms-map-xml'). Take a look at http://activemq.apache.org/stomp.html#Stomp-Messagetransformations and StompTest unit test for more i

Re: No IConnectionFactory implementation problem

2009-08-20 Thread Alistair Young
thanks for that - they weren't in the path for the exe. Works now. cheers, Alistair -- mov eax,1 mov ebx,0 int 80h On 19 Aug 2009, at 17:09, Timothy Bish wrote: On Wed, 2009-08-19 at 15:59 +0100, Alistair Young wrote: Hi there, I've downloaded the NMS and ActiveMQ binary assemblies

Re: How to add a TransportListener in spring.

2009-08-20 Thread dirful_zone
Hi,this is dirful again. I have resovle the second problem. I figured out my spring once more and added transportListener property. Then it worked. But I have not solved the first question. I don't know how to configure a remote URI. I put my question once more. It likes this: There's two company