Questions tagged [tibco-ems]

A proprietary enterprise messaging service (EMS) middleware product sold by TIBCO. It is widely used by large companies to connect very different computer systems by sending reliable messages between them.

A proprietary enterprise messaging service (EMS) middleware product sold by TIBCO. It is widely used by large companies to connect very different computer systems by sending reliable messages between them.

Related tags:

276 questions
4
votes
0 answers

Spring CachingConnectionFactory hangs on Tibco EMS broker restart

We are using Spring's CachingConnectionFactory on the sender side of JMS application which sends messages to Tibco EMS. We are getting problems when EMS broker is being restarted or there is a fault-tolerant switch. The call which handles exception…
4
votes
1 answer

Tibco EMS protocol

I am trying to interface with a Tibco EMS server using node.js and am curious if this is possible using entirely open source solutions solely in node.js. I do not want to use Tibco's Web Messaging solution. So then this brings us to... does Tibco…
Jordan
  • 397
  • 2
  • 18
4
votes
3 answers

How to publish messages to EMS Topic using Java

I would like to publish a test message to EMS topic and could use some directions. So far I have managed to do this import com.tibco.tibjms.TibjmsConnectionFactory; import com.tibco.tibjms.TibjmsTopicConnectionFactory; public class Connect { …
Bala
  • 11,068
  • 19
  • 67
  • 120
4
votes
4 answers

JMeter and TIBCO EMS

Is it possible to use Jmeter with TIBCO EMS? Because I am trying to connect to EMS servers through JMeter JMS plugin and not able to succeed on that. Any help on this would be greatly appreciated. EDIT: Error Log WARN -…
ukanth
  • 2,718
  • 5
  • 28
  • 38
4
votes
6 answers

Benefits of Commercial Messaging Middleware vs Open Source

I've been evaluating several opensource message queue technologies, such as RabbitMQ, ActiveMQ, OpenAMQ, etc. My question is, what benefits are gained by using a commercial technology such as Tibco EMS, WebSphereMQ, Sonic, etc. instead of something…
Will
  • 24,082
  • 14
  • 97
  • 108
4
votes
2 answers

A diagram / table about message oriented middleware

Would you guys know a diagram or dable that would give a short & concise but nevertheless complete and relatively up-to-date view of the existing protocols, and their specifics ? (namely : ZeroMQ, Rendez-Vous, EMS, ... All of them! :) ).
Skippy Fastol
  • 1,745
  • 2
  • 17
  • 32
3
votes
2 answers

Configure JNDI for Tibco EMS in Tomcat

I have written some code for creating a topic connection from Tibco EMS TopicConnectionFactory factory = new TibjmsTopicConnectionFactory(serverUrl); TopicConnection connection = factory.createTopicConnection(username, password); /* if clientID is…
Steve Bosman
  • 2,599
  • 1
  • 25
  • 41
3
votes
3 answers

Monitoring Queue using Java

I am trying to monitor a queue without using any API such as Hermes or GEMS i.e. I want to use purely JAVA. SO in order to browse the queue i.e. check if message has reached the queue or not without actually consuming the message I have written…
Kapil
  • 832
  • 2
  • 14
  • 29
3
votes
3 answers

Reduce Tibco EMS memory usage

On my developer machine I need to start Tibco EMS server to develop application which require it running. But I don't really need it in high performance state. How could I configure Tibco to use system resources as low as possible? Thanks.
Mike
  • 20,010
  • 25
  • 97
  • 140
3
votes
2 answers

Fault Tolerance JMS URL in Java

I am doing a JMS connection using Java. The command I am using to establish connection is QueueConnectionFactory factory = new com.tibco.tibjms.TibjmsQueueConnectionFactory(JMSserverUrl); Where JMSServerUrl is the varible which stores my JMS…
Kapil
  • 832
  • 2
  • 14
  • 29
3
votes
1 answer

Spring boot JMS DefaultListenerContainer occasionally drops connection and not autorevocered with Tibco EMS

Issue is similar to the one mentioned at Spring JMS Consumers to a TIBCO EMS Server expire on their own and have to restart our spring boot application to restablish the connection and below is the code snippet we are using for Listener…
3
votes
1 answer

How to document interactions over message queues?

How to document interactions over message queues? for refactoring and modification purposes. The scenario I'm facing: I have multiple applications (partially acting like micro-services but not really since it is a very old system) communicating over…
3
votes
5 answers

How to know who is connected to a Tibco EMS Queue

We are using a Tibco EMS Queue to send messages. We are the publisher. Whenever we are publishing messages it seems someone is consuming that. When we asked the other team who is subscribing, they said they are not consuming. Is it possible to know…
Naveen Chakravarthy
  • 819
  • 2
  • 15
  • 30
3
votes
1 answer

Performing load test on Tibco JMS endpoint with JMeter

I want to perform load test on a Tibco JMS endpoint using JMeter. The endpoint is a JMS Queue Receiver that will reply to the JMS Message to end the sessions. I have done a lot of googling regarding what parameters to fill in each field of the JMS…
Sean
  • 360
  • 3
  • 17
3
votes
0 answers

How do I retrieve the current message when I lose the connection to TIBCO JMS in java?

I am having problems with a JMS Tibco consumer in Java. Queue management is carried out by another company and they don't want to make changes on their part. I have to read the messages one by one to process them later in another service. I can…
1
2
3
18 19