Questions tagged [sonicmq]

SonicMQ is a message queueing system based on JMS.

SonicMQ is a commercial JMS based message queueing system. Originally build by the company named Sonic it was owned and developed by Progress Software and now by Aurea. Above standard JMS it offers reliability features like failover and clustering.

28 questions
22
votes
2 answers

Spring-Boot @Autowired in main class is getting null

I want to connect to a Sonic Broker Topic and Listen for any incoming XML message. I did something like below; Application.java @SpringBootApplication @ComponentScan({"com.mainpack", "com.msgpack.jms"}) @EnableJms public class Application extends…
Rajkishan Swami
  • 3,569
  • 10
  • 48
  • 68
3
votes
1 answer

Using Node.js to send and receive messages to/from SonicMQ (progress)

Does anyone know if it's possible, or have an example of using Node.js to connect to a SonicMQ broker? I have not been able to find any information or examples online.
NelsonPim
  • 67
  • 1
  • 8
3
votes
3 answers

Sending a message to a full JMS queue

I am writing a Java code that sends messages to a JMS queue. I am doing this by using "QueueSender.send()". The JMS queue itsels is sonicMQ but that's beside the point. My problem is that sometimes the JMS queue is full and the thread that tries to…
Avi Y
  • 2,456
  • 4
  • 29
  • 35
2
votes
0 answers

selector not working for sonic mq message-driven-channel-adapter

I have this spring integration config. The JMS broker is Sonic MQ. For some reason a connection cannot be established if I add a selector. I get lots of connection refreshed logs. It works fine without the selector. Is this a know issue for Sonic MQ…
1
vote
1 answer

ActiveMQ Artemis: can a producer determine final broker destination?

I am evaluating ActiveMQ Artemis as a potential replacement for SonicMQ. In Sonic, we have the ability for a client producing a message to determine the final broker destination. Simplified example: We have a broker in each of two regions: Europe…
Cosmittus
  • 637
  • 6
  • 19
1
vote
0 answers

SonicMQ SSL client connection

I am having trouble connecting to a SonicMQ broker from my Java application. this is my client code: System.out.println("Connection setup started"); System.setProperty("javax.net.ssl.keyStoreType",…
ZooS
  • 658
  • 8
  • 18
1
vote
0 answers

Cannot Connect To SonicMQ 7.6 From Spring-Boot Application

While Connecting to a Sonic Broker i do like below which works fine, TopicConnectionFactory factory = new progress.message.jclient.TopicConnectionFactory(brokerURL); TopicConnection connection =…
Rajkishan Swami
  • 3,569
  • 10
  • 48
  • 68
1
vote
1 answer

Trigger Monitor in JMS Provider like MQ Series

In Websphere MQ I can configure a Queue to Trigger an Application when a message arrives. In that way I can have an Application that starts only if needs and I don't have to manage one daemon that wait for message in that queue. More information…
Thomas8
  • 1,117
  • 1
  • 11
  • 22
1
vote
1 answer

How to list available destinations/topics in a SonicMQ environment

I am trying to write a test utility to list out the various items within the SonicMQ environments I connect to. I have been able to list out a number of items, including brokers, containers, and queues, but topics continue to elude me. I have…
Dan
  • 11
  • 3
1
vote
0 answers

Glassfish - connecting with OpenMQ to SonicMQ does not work

I have a glassfish instance running version 3.1.2. I need to connect to a remote server via JMS. The remote system - i think - uses SonicMQ. I have a JAR an example (from the remote servers company) with that I can communicate with the remote server…
McIntosh
  • 2,051
  • 1
  • 22
  • 34
0
votes
2 answers

jboss and sonic mq not playing nice

Here's what i have been beating my head against for a day now. I have an older version of jboss (jboss4), and from within it i am launching some code to go out and connect to an implementation of sonic mq (7.6, i think) where i am running as a…
nemisis enforcer
  • 349
  • 3
  • 18
0
votes
1 answer

How to connect to JMS domain in Java?

I am able to run the below Java code to send a message to SonicMQ JMS queue. It is copied from here: import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.JMSException; import javax.jms.MessageProducer; import…
aaa
  • 118
  • 1
  • 7
0
votes
1 answer

Can I send JMS messages from Python to SonicMQ?

I am trying to send an XML message from my existing Python application to the existing SonicMQ JMS ESB broker deployed in our organization. I cannot seem to find any Python library to send JMS messages to SonicMQ. The only one I could find is…
NRLP
  • 568
  • 3
  • 16
0
votes
1 answer

Need to get the messages passes through the sonic queue per minute

I need to get the numver of messages passes through the sonic queue per minute via a java code. I need this so i can create an alert when this messages per minute is higher than normal count. Can some on please assist me with this. Thanks
Lloyd95
  • 73
  • 7
0
votes
1 answer

Accessing Sonic MQ registered JNDI objects behind a firewall

I'm trying to connect to Sonic MQ hosted behind a firewall from IBM Web Sphere Message broker message flow . WMB is old v6.01. and it does not have an option to set proxy details. I'm getting ' There is a configuration problem with the JNDI…
venkat
  • 11
  • 2
1
2