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
0
votes
3 answers

Multiple receivers for a sing EMS Q

I have deployed a process in tibco admin and one of the queue(Q in the process starter of this process) configured has always 2 receivers. I am not sure why this is happening. if i stop this process then it goes to 0 receivers.i have also verified…
venkat
  • 61
  • 1
  • 4
  • 11
0
votes
2 answers

Restricting EMS cliemt connections

Hi Our EMS server is used by other clients for putting message. But some time they dont close connections and number of connections is reaching maximum limit of the server. Is there any way where we can restrict the number of connections for the…
Guru
  • 47
  • 2
  • 7
0
votes
2 answers

JMS Connection Overhead

How much is the overhead of creating following objects everytime sending the message to queue? Objects: javax.jms.Connection, javax.jms.Session, javax.jms.MessageProducer In my code, Whenever I want to send a message, I am creating above 3…
Rajesh
  • 21
  • 4
0
votes
1 answer

does tibco ems scale with more connections

I have a java server (jdk 1.6) that pulls in data from a tibco ems topic through one connection. I am starting to see a back log on being able to pull message from tibco. How well does tibco scale if i break the data into multiple topics and…
richs
  • 4,699
  • 10
  • 43
  • 56
0
votes
1 answer

Tibco EMS on remote machine

I am working with Tibco ems , I am able to send message to the queue successfuly where Tibco is running on localhost:7222. But I want to run tibco server in remote machine say on Openshift or cloudfoundry. How this can be done? Thanks a lot in…
priyank
  • 857
  • 2
  • 18
  • 35
0
votes
3 answers

TIbco EMS Client Fault Tolerance

I am aware that the Tibco EMS provides Fault Tolerance in a hot backup configuration on the server side as detailed in the User's Guide, this answer and here. But on the client side does Tibco EMS provide out of the box solution for fault-tolerant…
aateeque
  • 2,161
  • 5
  • 23
  • 35
0
votes
1 answer

Unable to Convert the message

I need to add a message header to the meassage which i will push to the Tibco and IBM MQ server. Please find below the code : (TextMessage)message).setStringProperty(rs.getString(2),value); the above code adds header to message. but when i convert…
user3016435
  • 25
  • 1
  • 8
0
votes
0 answers

XA transaction - javax.ejb.EJBException: Failed to acquire the pool semaphore, strictTimeout=-1

I'm playing with XA transactions. At the moment, I'm trying to integrate them with JMS. But instead I get some cryptic exceptions about failed semaphore acquisition. Here is my MDB: @javax.ejb.MessageDriven(messageListenerInterface =…
jFrenetic
  • 5,384
  • 5
  • 42
  • 67
0
votes
1 answer

Can we modify Data when publisher send the data to particular subscriber in TIBCO EMS or RV?

I am using TIBCO ems as middle ware in my project. TIBCO ems[Publisher, Server] publish the topic and according to topic subscribe , publisher send the data to subscribers.When publisher send the data I want to apply my algorithm over that data and…
Brijesh Patel
  • 33
  • 1
  • 1
  • 5
0
votes
1 answer

How messaging infrastructure maps topic to IPC/TCP layer for PUB/SUB?

Usually people would just work above this layer - but I am now working on this layer where I need to map the PUB/SUB many-to-many messaging relationship to a IPC or TCP infrastructure - which naturally, I could have only 1 publisher binding per…
Alex Suo
  • 2,977
  • 1
  • 14
  • 22
0
votes
2 answers

How to properly drain a Queue with a fast producer?

I have a situation where I am in need to drain a JMS (specifically Tibco EMS) queue. The use case is if we were to take a large outage, the queue would build up and processing it would take far too long. So rather, we want to drain the queue, and…
75inchpianist
  • 4,112
  • 1
  • 21
  • 39
0
votes
2 answers

How is the maxbyte property supposed to work?

according the documentation tor TIBCO EMS "For queues, maxbytes defines the maximum size (in bytes) that the queue can store, summed over all messages in the queue. Should this limit be exceeded, messages will be rejected by the server and the…
user955732
  • 1,330
  • 3
  • 21
  • 48
0
votes
2 answers

Get url of a queue from javax.jms.Queue instance

In my Java application I am connecting to a Tibco queue. The url of the Tibco queue is net.tems://server000002.test01.india.intranet:30002/queue/TEST_DOMAIN.001.TEST_QUEUE.001 In my java app, I have an instance of javax.jms.Queue which corresponds…
Balkrishna Rawool
  • 1,865
  • 3
  • 21
  • 35
0
votes
1 answer

Cannot Lookup from InitialContext Queue that has same name with another Topic

This line of code produces an exception Queue queue = (Queue) initialCtx.lookup("sample"); javax.naming.CannotProceedException: Name 'sample' is ambiguous: both a topic and a queue exist at…
bibobeo
  • 1
  • 1
0
votes
1 answer

java.security.AccessControlException when sending JMS message in GAE

I am trying to send a JMS message to tibco designer using GAE. Here are my codes: try{ Connection connection = null; Session session = null; MessageProducer msgProducer = null; Destination destination =…