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
3
votes
1 answer

Exclusive consumer for Tibco EMS

For ActiveMQ it is possible to create exclusive consumers for queue so that only one consumer receives all messages while it is alive. Is it possible to do the same for Tibco EMS? I was able to find only information about exclusive queues, but it…
dbf
  • 6,399
  • 2
  • 38
  • 65
3
votes
2 answers

Queue migration from one EMX Server to Other

We need advice on this queue migration topic. There are two JMS providers (PROVIDER and NEWPROVIDER ) to connect to two instances of EMX. Each has some queues. Now we want to move all queues from PROVIDER to NEWPROVIDER at EMX side. At WebSphere…
Gaurava Agarwal
  • 974
  • 1
  • 9
  • 32
3
votes
4 answers

JMS: modulus operator in message selector

I want to load balance JMS messages using message selectors. A message has a property "EntitiyIX". The selectors shall be like: "EntitiyIX Modulus 2 == 0" ==> route to queue A "EntitiyIX Modulus 2 != 0" ==> route to queue B What's the operator to…
Alex
  • 1,997
  • 1
  • 16
  • 31
3
votes
1 answer

Tibco - Max flow limit property

I have a process with max flow limit enabled. The value being set at 10. Its a Asyn process and used to get thousands of messages daily. We noticed that at peak time, with the increase in messages in queue in EMS server, the performance of the tibco…
GKN
  • 107
  • 1
  • 2
  • 8
3
votes
3 answers

Tibco-Ems Failover Issue

I have 2 Tibco-Ems Servers running, with fault tolerant setup. If one server is not available, the active server switches to the failover server as expected. However, every now and then I get strange errors. Then the new active server…
DanielG
  • 1,217
  • 1
  • 16
  • 37
3
votes
3 answers

What is the syntax to comment a line in a tibco ems script

In a script which looks like below create queue one create queue two create topic three How can I comment a line?
Aniruddh Joshi
  • 1,705
  • 3
  • 12
  • 18
3
votes
2 answers

What should the client do while the TIBCO EMS server attempts failover?

The TIBCO EMS user's guide (pg 292) says: The backup server will work indefinitely to either A) become the primary server or B) reconnect to the primary server. It also says clients may receive fail-over notification when the switch is…
Anthony Mastrean
  • 21,850
  • 21
  • 110
  • 188
3
votes
2 answers

Does TIBCO EMS Support STOMP Transport protocol?

We'd like to use STOMP to hit an EMS broker, and avoid the complexity of JMS. Is this idea at all possible with EMS?
Vincent
  • 91
  • 1
  • 3
3
votes
2 answers

Exception: "Name Not Found" When connecting to TIBCO EMS using Tibco Web Messaging

I am trying to connect Tibco Web Messaging (TWM) to Tibco EMS. But I get NameNotFoundException on the ConnectionFactory. Below is the log. ERROR Error starting Gateway: caught exception java.lang.ClassCastException:…
Naveen Chakravarthy
  • 819
  • 2
  • 15
  • 30
3
votes
2 answers

How advanced can Tibco EMS selectors get?

What I am aiming to do in my Bridge Selector is something to the effect of what you see here: (DC in('2','3','4','5','6','8','9','10','20','21','22','23') AND ActivityType in('Begin Day','End Day','Depart Center','Arrive Center','Payment')) OR (DC…
Brett VanderVeen
  • 893
  • 1
  • 11
  • 16
2
votes
1 answer

Weblogic (11g with Weblogic81 polling option) MDB is not reading all the messages in TIBCO EMS queue

We have a java application deployed in Weblogic where MDB connects to TIBCO EMS. There are 3 queues in TIBCO as in queues for Weblogic and 3 as out queues. Weblogic JVM creates 32 consumers (for each in queues) at the time of start up and listens to…
2
votes
3 answers

TibcojmsConnectionFactory configuration issues

I am trying to work on a tibco JMS CDC product. I have issues setting up the configuration and could not find a solution to my problem. import com.tibco.tibjms.TibjmsConnectionFactory; import…
2
votes
4 answers

Does anyone know exactly what javax.jms.InvalidDestinationException: Not allowed to create destination means?

I am try to connect to a Tibco Ems Topic using Spring when I recieve this error. Here is the config:
Michael W
  • 3,515
  • 8
  • 39
  • 62
2
votes
1 answer

How to deserialize a protobuf bytearray to java object

New to protobuf, need your kind advice please. I have a JMS subscriber which is receiving a message (Type -> com.tibco.tibjmsTibjmsBytesMessage) from a TIBCO queue. The messages have been published as Protobuf bytes message on the queue. As as…
2
votes
1 answer

Transform EMS Queue message and insert into DB using Anypoint Studio

I am trying to listen and consume an EMS queue message and transform it to insert into a Database using Anypoint Studio platform. Below youn can find an example of the EMS queue message, and the structure of the target database table, as well as,…
1 2
3
18 19