6 51 281 905
> W: http://www.actual-it.si
>
>
> -Original Message-
> From: Justin Bertram
> Sent: Friday, January 5, 2024 5:10 PM
> To: users@activemq.apache.org
> Subject: Re: No option to send message via ArtemisMQ console
>
> That's odd. The conn
ictions on queues)
Gašper Čefarin
Systems Engineer
Ferrarska ulica 14, 6000 Koper – Slovenia
M: +386 51 281 905
W: http://www.actual-it.si
-Original Message-
From: Justin Bertram
Sent: Friday, January 5, 2024 5:10 PM
To: users@activemq.apache.org
Subject: Re: No option to send m
o does not work for me.
>
> In short - I can only see the option to send messages if the above line is
> commentted out!
> Is this a bug?
>
>
> -Original Message-
> From: Domenico Francesco Bruscino
> Sent: Wednesday, January 3, 2024 5:34 PM
> To: users@activemq.
Francesco Bruscino
Sent: Wednesday, January 3, 2024 5:34 PM
To: users@activemq.apache.org
Subject: Re: No option to send message via ArtemisMQ console
Hi Gašper,
the missing queue tabs are shown only if the logged in user has the related
management rights: destroyQueue, sendMessage, browse and
t; Options missing are:
> Delete queue
> Send message
> Browse queue
>
> Screenshot:
> https://i.imgur.com/AkUMemM.png
>
>
>
> NOTICE - NOT TO BE REMOVED.
> This e-mail and any attachments are confidential and may contain legally
> privileged information and/
Hi,
I'm using Artemis v2.27.1.
I have 2 replicating clusters, both consisting of 1 master and 1 slave node.
One of them does not offer the option to send a message through the artemis web
console.
How can i troublehsoot this?
Restart did not help.
Options missing are:
Delete queue
Send me
y = session.queueQuery(new
> > SimpleString(ACTIVE_MQ_SMTP_QUEUE));
> > if (!queueQuery.isExists())
> > session.createQueue(new
> > QueueConfiguration(ACTIVE_MQ_SMTP_QUEUE).setDurable(true));
> >
-Ursprüngliche Nachricht-
> Von: Clebert Suconic
> Gesendet: Montag, 29. März 2021 15:40
> An: users@activemq.apache.org
> Betreff: Re: send message
>
> This example here is working with JMS:
>
> https://github.com/apache/activemq-artemis/blob/fe3851ff6d243cc0b58872c543
t-
Von: Clebert Suconic
Gesendet: Montag, 29. März 2021 15:40
An: users@activemq.apache.org
Betreff: Re: send message
This example here is working with JMS:
https://github.com/apache/activemq-artemis/blob/fe3851ff6d243cc0b58872c5431646fbeb410b41/examples/features/standard/large-message/src/mai
gt; Von: Clebert Suconic
> > Gesendet: Freitag, 26. März 2021 13:26
> > An: users@activemq.apache.org
> > Betreff: Re: send message
> >
> > On your case it would make sense if the streaming was not a file but a
> > biffer. I get it.
> >
> > The opti
from your ByteBuffer and
pass it in.
On Fri, Mar 26, 2021 at 8:48 AM wrote:
>
> A example would be great!
>
> -Ursprüngliche Nachricht-
> Von: Clebert Suconic
> Gesendet: Freitag, 26. März 2021 13:26
> An: users@activemq.apache.org
> Betreff: Re: send message
&
A example would be great!
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Freitag, 26. März 2021 13:26
An: users@activemq.apache.org
Betreff: Re: send message
On your case it would make sense if the streaming was not a file but a biffer.
I get it.
The optimization here
ready and don't want bring the
> huge messages back into the jvm.
>
> -Ursprüngliche Nachricht-
> Von: Clebert Suconic
> Gesendet: Donnerstag, 25. März 2021 20:31
> An: users@activemq.apache.org
> Betreff: Re: send message
>
> I assumed the data was already o
ebert Suconic
Gesendet: Donnerstag, 25. März 2021 20:31
An: users@activemq.apache.org
Betreff: Re: send message
I assumed the data was already on a file.
If you passed the file name. The receiver would receive a message where you
could either do the opposite. (Pass a file name to steam. Or
ss the name of the file via
> a message property, right?
> How would the receiver side looks like?
>
>
> -Ursprüngliche Nachricht-
> Von: Clebert Suconic
> Gesendet: Donnerstag, 25. März 2021 16:04
> An: users@activemq.apache.org
> Betreff: Re: send message
>
&
oks like?
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Donnerstag, 25. März 2021 16:04
An: users@activemq.apache.org
Betreff: Re: send message
Sending a message this large will make it to be converted as a large stream and
saved as a file on the server anyways...
The c
> -Ursprüngliche Nachricht-
> Von: Justin Bertram
> Gesendet: Mittwoch, 24. März 2021 17:56
> An: users@activemq.apache.org
> Betreff: Re: send message
>
> Well said, Tim. I was going to say the same thing about premature
> optimization.
>
>
> Justin
>
>
buffer?
-Ursprüngliche Nachricht-
Von: Justin Bertram
Gesendet: Mittwoch, 24. März 2021 17:56
An: users@activemq.apache.org
Betreff: Re: send message
Well said, Tim. I was going to say the same thing about premature optimization.
Justin
On Wed, Mar 24, 2021 at 7:04 AM Tim Bain wrote
a native buffer
> into
> > a
> > > byte array or stream and tunnel this throught the jvm!
> > > >
> > > > Is there a way to use a ByteBuf with jms?
> > > >
> > > > -Ursprüngliche Nachricht-
> > > > Von: Clebert
gt; > > I think it makes no sense to convert it back from a native buffer into
> a
> > byte array or stream and tunnel this throught the jvm!
> > >
> > > Is there a way to use a ByteBuf with jms?
> > >
> > > -Ursprüngliche Nachricht-
> > >
from yours.
> > > >
> > > > On Tue, Mar 23, 2021 at 10:34 AM wrote:
> > > > >
> > > > > I want to use the jms layer, but I've a netty application and I want
> > > > > to
> > > > write the ByteBuf mostly efficent to the queue.
&
ay or stream and tunnel this throught the jvm!
> > > >
> > > > Is there a way to use a ByteBuf with jms?
> > > >
> > > > -Ursprüngliche Nachricht-
> > > > Von: Clebert Suconic
> > > > Gesendet: Dienstag, 23. März 202
o sense to convert it back from a native buffer into a
> > byte array or stream and tunnel this throught the jvm!
> > >
> > > Is there a way to use a ByteBuf with jms?
> > >
> > > -Ursprüngliche Nachricht-
> > > Von: Clebert Suconic
> &
c
> > Gesendet: Dienstag, 23. März 2021 15:00
> > An: users@activemq.apache.org
> > Betreff: Re: send message
> >
> > You were supposed to call reset right before sending though... but I did
> not need it on my test.. I will post a link...
> >
> > Anyway
15:00
> An: users@activemq.apache.org
> Betreff: Re: send message
>
> You were supposed to call reset right before sending though... but I did not
> need it on my test.. I will post a link...
>
> Anyway, if you use the JMS API, the JMS layer is very thin, and I don't think
&
h jms?
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Dienstag, 23. März 2021 15:00
An: users@activemq.apache.org
Betreff: Re: send message
You were supposed to call reset right before sending though... but I did not
need it on my test.. I will post a link...
Anyway, if you use th
; > > at
> > > org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:89)
> > > at
> > > org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:41)
> > > at
> > > org.eclipse.jdt.inter
eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:41)
> > at
> > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:541)
> > at
> > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:763)
> > at
> >
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:763)
> at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:463)
> at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunne
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:209)
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Dienstag, 23. März 2021 13:48
An: users@activemq.apache.org
Betreff: Re: send message
Can you try calling message.getBodyBuffer
Suconic
> > Gesendet: Dienstag, 23. März 2021 03:19
> > An: users@activemq.apache.org
> > Betreff: Re: send message
> >
> > Why you don't use the JMS API for this?
> >
> > or if you really want to use the core API, use the getReadOnlyBuffer() or
03:19
> An: users@activemq.apache.org
> Betreff: Re: send message
>
> Why you don't use the JMS API for this?
>
> or if you really want to use the core API, use the getReadOnlyBuffer() or
> getDataBuffer() on the Message instead.
>
> On Mon, Mar 22, 2021 at 12:01 PM Justin Bertra
getDataBuffer gives same result! Already tried!
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Dienstag, 23. März 2021 03:19
An: users@activemq.apache.org
Betreff: Re: send message
Why you don't use the JMS API for this?
or if you really want to use the core API, us
I was thinking to use the JMS API, but I need to store a netty ByteBuf tot he
queue and I thougth the core api is more effective, isn't it?!
-Ursprüngliche Nachricht-
Von: Clebert Suconic
Gesendet: Dienstag, 23. März 2021 03:19
An: users@activemq.apache.org
Betreff: Re: send me
The stack trace is correct
-Ursprüngliche Nachricht-
Von: Justin Bertram
Gesendet: Montag, 22. März 2021 17:01
An: users@activemq.apache.org
Betreff: Re: send message
The stack-trace indicates you're invoking the "readString" method on line
93 of MailServerActiveMQCli
;
> > Fyi:
> > 1953068645(decimal) = 74697665(hexadecimal) = "tive"(ascii text)
> > And "tive" is likely part of the string "ActiveMQ"?
> > e.
> >
> > -Oorspronkelijk bericht-
> > Van: tobias.w...@t-systems.com
> >
n: maandag 22 maart 2021 16:41
> Aan: users@activemq.apache.org
> Onderwerp: AW: send message
>
>
> EXTERNAL SENDER: Do not click any links or open any attachments unless
> you trust the sender and know the content is safe.
> EXPÉDITEUR EXTERNE:Ne cliquez sur aucun lien et n’o
Fyi:
1953068645(decimal) = 74697665(hexadecimal) = "tive"(ascii text)
And "tive" is likely part of the string "ActiveMQ"?
e.
-Oorspronkelijk bericht-
Van: tobias.w...@t-systems.com
Verzonden: maandag 22 maart 2021 16:41
Aan: users@activemq.apache.o
Bertram
Gesendet: Montag, 22. März 2021 16:34
An: users@activemq.apache.org
Betreff: Re: send message
What actually fails? Do you have a stack-trace?
Justin
On Mon, Mar 22, 2021 at 9:53 AM wrote:
> I try to send and receive a netty ByteBuf message, but it fails.
> What I'm doing wrong h
Nachricht-
Von: Justin Bertram
Gesendet: Montag, 22. März 2021 16:34
An: users@activemq.apache.org
Betreff: Re: send message
What actually fails? Do you have a stack-trace?
Justin
On Mon, Mar 22, 2021 at 9:53 AM wrote:
> I try to send and receive a netty ByteBuf message, but it fails.
>
What actually fails? Do you have a stack-trace?
Justin
On Mon, Mar 22, 2021 at 9:53 AM wrote:
> I try to send and receive a netty ByteBuf message, but it fails.
> What I'm doing wrong here? I even don't know ist he mistake in sending or
> receiving!
> I was thinking to use the jms layer, but I
I try to send and receive a netty ByteBuf message, but it fails.
What I'm doing wrong here? I even don't know ist he mistake in sending or
receiving!
I was thinking to use the jms layer, but I'm receiving the data buffer throught
a netty buffer and I want to avoid to convert the buffer to a byte
Is this for ActiveMQ 5.x or for Artemis?
Tim
On Fri, Feb 21, 2020, 12:30 PM ssjuvestabia1907
wrote:
> Hi all,
> please could you help me to understand the issue indicated below.
> We need to write iDoc message (xml file) from a SAP system on a queue
> (section Queues) but the iDoc message (xml
Hi all,
please could you help me to understand the issue indicated below.
We need to write iDoc message (xml file) from a SAP system on a queue
(section Queues) but the iDoc message (xml file) arrive only in the Topics
section.
It's required new configuration on Connections / Subscribers / ecc.
I
Hi all,
please could you support me to understand why the message arrive on Topics
section and doesn't arrive in the Queue Section.
We need a particular configuration to open Connection / Subscriber / etc ?
The source system is SAP (idoc document - xml files)
Thank you,
Gaetano
--
Sent from: h
me URI not work with C++
code
I tested with discovery:(multicast://default) too and other similar URI, but
it continue to not work, somebody can give me the right URI sequece? Is
possible that i miss somethings?
Thanks
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Send-
discovery:(multicast://default) too and other similar URI, but
it continue to not work, somebody can give me the right URI sequece? Is
possible that i miss somethings?
Thanks
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Send-Message-on-Multicast-URI-not-work-tp4711424
Hey did you get the problem solved? if yes could you please share solution
with me?
i have exact same problem. Thanks!
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293p4704069.html
Sent from the ActiveMQ
nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293p4704084.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
:5.9.0.redhat-610379]
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293p4685194.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
in the server's log, only one line message is printed.
2014-04-09 10:03:17,222 | WARN | Transport Connection to:
tcp://172.19.34.88:51245 failed: java.io.EOFException |
org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ
Transport: tcp:///172.19.34.88:51245@61616
the exception sta
:
> Thank you, perfect. My problem is solved.
>
> thank you,
>
> Francesco
>
>
>
> --
> View this message in context:
> http://activemq.2283324.n4.nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293p4676297.html
> Sent from the Act
Thank you, perfect. My problem is solved.
thank you,
Francesco
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293p4676297.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
; SecurityException: User name [null] or password is invalid.
>
> How can I instruct hawtio to authenticate when sending messages? BTW, why
> activemq allows hawtio to browse destinations while forbidding it to post?
>
> thank you for the clarifications!
>
> Francesco
>
>
>
this message in context:
http://activemq.2283324.n4.nabble.com/Hawtio-send-message-User-name-null-or-password-is-invalid-tp4676293.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
e | ActiveMQ Transport: tcp:///
> 10.1.100.66:64118
> 2013-06-13 09:53:46,018 | WARN | Async error occurred:
> javax.jms.JMSException: Cannot send message to queue://10408_base with
> invalid (null) producer state |
> org.apache.activemq.broker.TransportConnection.Service | ActiveMQ
hange@c44470 |
org.apache.activemq.broker.region.Queue | ActiveMQ Transport:
tcp:///10.1.100.66:64118
2013-06-13 09:53:46,018 | WARN | Async error occurred: javax.jms.JMSException:
Cannot send message to queue://10408_base with invalid (null) producer
producer state for:
org.apache.activemq.broker.ProducerBrokerExchange@47a65f28 |
org.apache.activemq.broker.region.Queue | ActiveMQ Transport:
tcp:///0:0:0:0:0:0:0:1:57089@61616
2013-04-12 00:03:23,094 | WARN | Async error occurred:
javax.jms.JMSException: Cannot send message to * with invalid (null
I am using activemq 5.7, has any one tried with the previous versions and was
it working.
Lokesh
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Unable-to-send-message-to-xmpp-queue-tp4663410p4663591.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
tory(TransportFactory.java:193)
> ... 7 more
>
> Kindly let me know if I need to include any jars.
>
>
> Any help is appreciated.
>
> thanks
> Lokesh
>
>
>
> --
> View this message in context:
> http://activemq.2283324.n4.nabble.com/Unable-to-send-message-to-xmpp-queue-tp4663410.html
> Sent from the ActiveMQ - User mailing list archive at Nabble.com.
>
--
*Christian Posta*
http://www.christianposta.com/blog
twitter: @christianposta
nabble.com/Unable-to-send-message-to-xmpp-queue-tp4663410.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
.n4.nabble.com/Is-it-possible-to-send-message-from-one-broker-to-another-broker-tp4514892p4515207.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
On Mar 29, 2012, at 11:18 AM, newtonsri wrote:
> Hi,
>
> I have the following topology:
>
> Producer > Broker 1 --> Consumer 1 > Broker 2 -> Consumer
> 2.
> ^ |
> |_ _ _ _ _ _ _ _
message that I receive from consumer1 in broker2
to be sent to both consumer2 as well as broker1 ?
Thanks in advance.
--
View this message in context:
http://activemq.2283324.n4.nabble.com/Is-it-possible-to-send-message-from-one-broker-to-another-broker-tp4514892p4514892.html
Sent from the Act
I did read that javadoc before, just wanted some additional assurance from the
community that this was indeed accurate. Sounds like it is. Thanks :-)
--jason
On Dec 8, 2011, at 1:45 AM, Torsten Mielke wrote:
> From the Javadoc of PooledConnectionFactory:
>
> http://activemq.apache.org/mave
From the Javadoc of PooledConnectionFactory:
http://activemq.apache.org/maven/5.5.0/activemq-pool/apidocs/org/apache/activemq/pool/PooledConnectionFactory.html
"A JMS provider which pools Connection, Session and MessageProducer instances
so it can be used with tools like Camel and Spring's Jms
Does the activemq-pool stuff cope with pooling connections, sessions and
producers? Such that a component could access create and use these normally +
close them, and under the covers activemq-pool will do the smart thing and
reuse/avoid-close? Consumers are not pooled in similar fashion?
I
The camel-jms component can be used to consume and produce msgs. But Camel
itself does not pool or cache anything. It depends on the underlying Spring
DefaultMessageListenerContainer and connection factory to provide pooling.
The Camel installation has a jms example in examples/camel-example-jms
Sure, take a look at
http://camel.apache.org/activemq.html
especially the part on connection pooling, which essential for efficient
usage of resources.
Regards
--
Dejan Bosanac - http://twitter.com/dejanb
-
The experts in open source integration and messaging - http://fusesource
Is there any Camel component which could be used here to perform the hand off
of an event to a thread to encode into message and publish to a topic which
would perform optimally?
--jason
On Nov 18, 2011, at 2:27 AM, Dejan Bosanac wrote:
> Hi Jason,
>
> those operations are costly and if your
With JmsTemplate, it's suffering to create and destory the underlying resource
with any call on it, so from Spring 2.5.3,CachingConnectionFactory is
introduced with new features such as caching connection,session,consumer and
producer resouce.So donot be afraid of JmsTemplate anymore.
At 201
Hi Jason,
those operations are costly and if your component must open/close it for
every message it will affect performances. In those cases it is recommended
to use pool connection factory which caches those object and improve
performances.
See http://activemq.apache.org/jmstemplate-gotchas.html
I'm wondering what sort of overhead there is to create and then close) the
components needed to send a message, specifically after you have a started
connection and using a vm:// transport.
I'm working on implementing distributed eventing for a server which already has
its own eventing built-in
/exception-when-sender-not-able-to-send-message-tp29322034p29322034.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
gt; View this message in context:
> http://old.nabble.com/Send-Message-tp27352644p27352644.html
> Sent from the ActiveMQ - User mailing list archive at Nabble.com.
>
>
--
http://blog.garytully.com
Open Source Integration
http://fusesource.com
Hello,
it is possible to configure, that activemq sends only messages of one
defined priority. To example it should send only the messages with the
priority 1.
--
View this message in context:
http://old.nabble.com/Send-Message-tp27352644p27352644.html
Sent from the ActiveMQ - User mailing
Ok, it was because of the schema
I used my old schema and the msg was not in the same format. TEXT instead of
IMAGE in 5.2.0 for sybase.
Now it seems to work correctly
--
View this message in context:
http://www.nabble.com/Unable-to-send-message-randomly-%3A-Unknown-data-type%3A--1
ges(JournalTopicMessageStore.java:65)
at
org.apache.activemq.broker.region.cursors.TopicStorePrefetch.doFillBatch(TopicStorePrefetch.java:94)
at
org.apache.activemq.broker.region.cursors.AbstractStoreCursor.fillBatch(AbstractStoreCursor.java:227)
... 26 more
Does anybody have an idea about this problem ?
--
View this message in context:
http://www.nabble.com/Unable-to-send-message-randomly-%3A-Unknown-data-type%3A--1-tp24293718p24293718.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
producer not much faster than consumer,send message number almost equals
consumer message number from monitor page.
Andreas Gies-3 wrote:
>
> Hi there,
>
> it sounds a bit like flow control kicking in. How many messages are
> you sending ?
> Is your producer much faster
Hi there,
it sounds a bit like flow control kicking in. How many messages are
you sending ?
Is your producer much faster than your consumer ? How big are your
messages ?
Best regards
Andreas
On Apr 24, 2009, at 3:23 AM, Bruce Sun wrote:
Sometimes producer cann't send message,and
Sometimes producer cann't send message,and send method wait for there . but
server was no unusual,no error info.than my apply will dead,because all
request wait for there.
restart mq server , than it will work Normal.
someone can help me?
--
View this message in context:
http://www.nabbl
Spring
with JPA/Hibernate.
I realize that perhaps this is more of a Spring question, but thought
perhaps other ActiveMQ users have run into this type of thing.
Thanks
Sean
--
View this message in context:
http://www.nabble.com/Send-message-after-transaction-tp22548251p22548251.html
Sent from the
on the message and generates a response
>> > 4. Consumer sends response back to JMS Topic/Queue (can be same or
>> > difference Topic/Queue)
>> > 5. Producer receives response and acts upon the response.
>> >
>> > This would have to be as close to s
receives response and acts upon the response.
> >
> > This would have to be as close to synchronous as possible, since I don't
> > want any more latency than necessary. Also, the producer might send
> > message
> > #2 before it gets the response for message#1.
> &g
ucer receives response and acts upon the response.
>
> This would have to be as close to synchronous as possible, since I don't
> want any more latency than necessary. Also, the producer might send
> message
> #2 before it gets the response for message#1.
>
> Basically I
ame or
difference Topic/Queue)
5. Producer receives response and acts upon the response.
This would have to be as close to synchronous as possible, since I don't
want any more latency than necessary. Also, the producer might send message
#2 before it gets the response for message#1.
Basica
latency than necessary. Also, the producer might send message
#2 before it gets the response for message#1.
Basically I am looking to replace some web services with JMS.
Thanks
my consumer. i am attaching my client side
> code let me know if you get some clue.
>
> Below three methods i am calling in below sequence.
>
> 1) When page is loaded register listener topic using onStartListen()
> method.
> 2) When user enter message and click on send messag
in below sequence.
1) When page is loaded register listener topic using onStartListen() method.
2) When user enter message and click on send message then it will call
onSendMessage() method.
3) call handleNewMessage() if we get any message.
/**
below are the topic which we are using to send chat
gt; topic/channel from server.
>
> which side of code u want to check. server side or javascript?
>
>
--
View this message in context:
http://www.nabble.com/Able-to-send-message-to-ActiveMQ-but-Not-getting-reply-to-Client-tf4400842s2354.html#a12924311
Sent from the ActiveMQ - User mailing list archive at Nabble.com.
}
>>>>
>>>>
>>>> above implementation will read message from activemq for corresponding
>>>> consumer. but we found that
>>>> we are not having any consumer related to client so even if we have
>>>> data in the active
>>
>>>
>>> above implementation will read message from activemq for corresponding
>>> consumer. but we found that
>>> we are not having any consumer related to client so even if we have data
>>> in the activemq we are not
>>> able to send that d
t; I dont know how to keep live consumer so that we can execute above logic
>> and we can get messages.
>>
>> is this bug or do i need more configuration to resolve this isssue.
>>
>>
>>
>> J
>>
>> chago wrote:
>>>
>>>
this bug or do i need more configuration to resolve this isssue.
>
>
>
> J
>
> chago wrote:
>>
>> I know others that have had this problem running with the 4.1.x series.
>> Is that the case for you?
>>
>> -- jim
>>
>>
>&g
P wrote:
>>
>> Hi ,
>>
>>I am using ActiveMQ/AJAX for my web based application. I have
>> integrated ajax successfully in my application but getting below issue
>> sometime.
>>
>> 1) I send message to MQ but not getting reply to client browser bu
ometime.
>
> 1) I send message to MQ but not getting reply to client browser but other
> browsers are getting reply who are registered for same topic.
>
> 2) is there any way to check whether our listener is listening to
> topic?if not connected so we can retry and connect so we
Hi ,
I am using ActiveMQ/AJAX for my web based application. I have integrated
ajax successfully in my application but getting below issue sometime.
1) I send message to MQ but not getting reply to client browser but other
browsers are getting reply who are registered for same topic.
2) is
97 matches
Mail list logo