All Questions
9 questions
0
votes
1
answer
785
views
JMS replyTo, create Temporary Queue in different JMS provider where request is sent
With JMS, there is a concept of Temporary Queue. It is a queue, which exists only in the particular JMS connection. It is created during transaction by the client, and is destroyed when the connection ...
1
vote
1
answer
839
views
WebLogic JMS encryption
How to encrypt the communication between nodes, which do messaging via distributed WebLogic JMS broker? Either transport level encryption, or even better end-to-end encryption, where the message ...
0
votes
1
answer
527
views
Sending message to JMS (Weblogic)
When I run the following code it seems that the message was sent to the queue but I can not see anythyng on the queue. There is no error, exception durig executing my code.
I use Weblogic server.
...
1
vote
2
answers
184
views
How I can keep and restore JMSservers to their last known state after a reboot
I am trying to find if there is any parameter which will keep the Consumption Parameters as the previous workable state after a full restart of Weblogic Server.
I would like to restore JMSservers to ...
0
votes
2
answers
2k
views
How to read from a Weblogic JMS Queue with MQ Explorer?
I have Weblogic 12.1.2 and IBM WebSphere MQ Explorer 7.5.0.2.
In Weblogic, I created:
JMS Server
JMS Module
Connection Factory
JMS Queue
I have a JAVA program, which can send messages into this Queue....
0
votes
1
answer
2k
views
Configuration of WebMethods Client to connect to WebSphere JMS (not WebSphere MQ)
Currently I have setup two queues on WebSphere 7. One for sending and one for recieving messages.
I have configured a activation spec on the receiving queue and the messages are consumed fine by a ...
0
votes
1
answer
501
views
What is the best practice with JMS Servers? Should it be deployed on Consumer or Producer side?
From architecture point of view, I was wondering what would be the best practice on an integration scenario with 2 application and OSB as Middleware: JMS Consumer runs over JBoss while OSB application ...
0
votes
2
answers
3k
views
JMS poison message removal
I'm trying to debug a web app hostde on weblogic 10r3 server. The App is receiving input from foreign IBM JMS Queue (classname: com.ibm.mq.jms.MQQueue) via Java Message Driven Beans.
I wrote a small ...
20
votes
3
answers
11k
views
JMS performance
I'm having a bit of trouble with understanding JMS from a performance perspective. We have this very straightforward code in our application:
QueueConnection connection = null;
QueueSession session = ...