Author |
Message |
Topic: How to connect to remote Queue Manager from JMS |
abmanesh
Replies: 5 Views: 5346
|
Forum: IBM MQ Java / JMS Posted: Fri Nov 08, 2002 6:41 am Subject: How to connect to remote Queue Manager from JMS |
Hi Reddy,
'Am not clear about what you mean by remote queu manager. I assume you are trying to connect to a Queumanager as as a client. When you defined the topic connection factory with JMS ... |
Topic: set Header property |
abmanesh
Replies: 3 Views: 3048
|
Forum: IBM MQ Java / JMS Posted: Fri Nov 08, 2002 6:33 am Subject: set Header property |
Could you check the value of EXPIRY property value on the Queue admin object.
I think you have to set EXPIRY(APP) when you define the Queue Admin object with JMSAdmin tool, so that your applicati ... |
Topic: How to get messages into Java application from queues |
abmanesh
Replies: 4 Views: 3091
|
Forum: IBM MQ Java / JMS Posted: Tue Nov 05, 2002 10:10 am Subject: How to get messages into Java application from queues |
Here is a skeleton for getting the message. Refer the Using Java Manual for more details.
This should get you started. Rememember the MQ Object names such as Queue Manager Names,
Queue Name etc., ... |
Topic: MAX_CHANNELS & MQJMS2005 |
abmanesh
Replies: 1 Views: 2012
|
Forum: IBM MQ Java / JMS Posted: Mon Nov 04, 2002 6:51 am Subject: MAX_CHANNELS & MQJMS2005 |
Every time you make a client connection, it is associated with a channel process. So at any time if you 10 connections to the queue manager using the same channel, there would be 10 active channel pro ... |
Topic: Initial Context Factory |
abmanesh
Replies: 5 Views: 4661
|
Forum: IBM MQ Java / JMS Posted: Mon Oct 28, 2002 5:27 am Subject: Initial Context Factory |
Refer chapter 8 in the redbook "Programming Patterns in MQSeries " . This chapter describes the use of different JNDI providers.
You could access the the redbook at
http://www.redbooks.ibm.com/pubs/ ... |
Topic: java.io.EOFException on .get() using MQ base Java |
abmanesh
Replies: 1 Views: 2014
|
Forum: IBM MQ Java / JMS Posted: Thu Oct 24, 2002 9:05 am Subject: java.io.EOFException on .get() using MQ base Java |
Could you give more details on this. My understading is that EOFException exception is thrown on readXXX mothods, not on get() method. get() method should throw an MQException.
On the buffer siz ... |
Topic: Message Bundling |
abmanesh
Replies: 8 Views: 7650
|
Forum: IBM MQ Java / JMS Posted: Thu Oct 24, 2002 5:01 am Subject: Message Bundling |
You could format the message in XML . You could have multiple nodes within the XML document, where individual nodes represent the messages you wanted to bundle. |
Topic: Queue Manager Creation |
abmanesh
Replies: 4 Views: 4029
|
Forum: IBM MQ Java / JMS Posted: Tue Oct 22, 2002 5:02 am Subject: Queue Manager Creation |
You can use MQ Series Control Commands (MQSC) to create Queue Manager and other MQ Objects. You can write programs that send PCF messages to administer MQ Objects within a queue manager. Please refe ... |
Topic: How to set ApplIdentityData using JMS for MQ |
abmanesh
Replies: 2 Views: 2806
|
Forum: IBM MQ Java / JMS Posted: Tue Oct 22, 2002 4:47 am Subject: How to set ApplIdentityData using JMS for MQ |
Refer MQSeries Using Java Manual, Chapter 12 on JMS Messages. The section Mapping JMS Messages onto MQSeries Messages, describes the mapping between MQMD fields to the equivalent JMS fields/properties ... |
Topic: ClassCastException when retrieving QueueConnectionFactory fr |
abmanesh
Replies: 2 Views: 3993
|
Forum: IBM MQ Java / JMS Posted: Thu Apr 11, 2002 4:58 am Subject: ClassCastException when retrieving QueueConnectionFactory fr |
When working with persistent name server you can specify the context name with the provider url itself (iiop://localhost:900/jms ). Then when you obtain the Context try using the instance of InitialD ... |
Topic: JMS with file system as service provider |
abmanesh
Replies: 6 Views: 4736
|
Forum: IBM MQ Java / JMS Posted: Fri Apr 05, 2002 6:28 am Subject: JMS with file system as service provider |
May be you have tried this. The syntax for the provider url has only one forward slash not two
file:/drive:/path
|
Topic: Obtaining connection to MQ through JMS |
abmanesh
Replies: 4 Views: 3858
|
Forum: IBM MQ Java / JMS Posted: Wed Mar 27, 2002 6:22 am Subject: Obtaining connection to MQ through JMS |
Refer to Chapter 8 in the redpiece 'Programming Patterns with MQSeries' . You could find the book at http://www.redbooks.ibm.com/redpieces/pdfs/sg246506.pdf |
Topic: JMS sending to MQ Java |
abmanesh
Replies: 1 Views: 3262
|
Forum: IBM MQ Java / JMS Posted: Tue Mar 26, 2002 7:26 am Subject: JMS sending to MQ Java |
If you want to send messages from a JMS app to a non JMS app, when you define the JNDI administered objects, specify the TARGETCLIENT property (TC) with value MQ .
|
Topic: java.lang.UnsatisfiedLinkError: no mqjbnd02 in java.library. |
abmanesh
Replies: 8 Views: 9807
|
Forum: IBM MQ Java / JMS Posted: Tue Mar 26, 2002 6:03 am Subject: java.lang.UnsatisfiedLinkError: no mqjbnd02 in java.library. |
Hi Siva,
If you have installed support pack MA88 the file should be in the MQSeriesInstallPathjavalib . First check to see if you could find the mqjbnd02 file on your system. If not you may w ... |
Topic: Subscriptions not receiving message |
abmanesh
Replies: 7 Views: 7517
|
Forum: IBM MQ Java / JMS Posted: Fri Mar 22, 2002 12:22 pm Subject: Subscriptions not receiving message |
You can create factory objects for pub/sub at
runtime using the MQSeires class MQTopicConnectionFactory (this class is in com.ibm.mq.jms package).
However, using this method reduces the portability ... |