The AMQCLCHL.TAB file is created/amended when properties of a CLNTCONN are defined/altered. This file is required for the client to connect to the QMgr. The SVRCONN entries are held on the corresponding (target) QMgr.
When the client application issues MQCONN, the QMgrName in the connect...
If you check the pre-defined values for MQFMT_*, you will see that MQFMT_NONE equates to blanks (or empty). You should also see the available values. IMHO, it is not good practice to rely on default values, and you should set a value in this MQMD field. For most applications MQFMT_STRING is...
The following info was found @
http://mainframeforum.com/archive/1431/2002/9/452360
In article , phillip hung
wrote:
>This "Local Communication Address" is not mentioned in the doc. What should I put in it ?
If this is a sender channel in MQ 5.3, you can use this to specify the...
I'd suggest the MQSeries Primer @ http://www.redbooks.ibm.com/redpapers/pdfs/redp0021.pdf
as a good place to start looking for info.
You'll see that it removes the need for applications to deal with connectivity issues between platforms so, in a sense, it has to do with both programming and...
Include the IBM-supplied CMQB.BAS module and define a message descriptor
Dim MsgDesc As MQMD
You can set
MsgDesc.ReplytoQ and
MsgDesc.ReplytoQMgr
Alternatively, if using ActiveX, you can define (say)
Dim PutMsg as MQMessage
this enables you to set
PutMsg.ReplyToQueueName...
It is better, where possible, to do 10 MQPUTs. The rationale is that MQOPEN and MQCLOSE are fairly slow compared with MQPUT or MQGET. If you use 10 threads, you will need 10 MQOPENs and 10 MQCLOSEs
If you are exchanging messages between ASCII and EBCDIC platforms, don't use CONVERT(YES) on channels - let the apps request conversion. If the receiving app issues MQGET without MQGMO_CONVERT, you will get the message in whatever format the sending app MQPUT it. If you also need to see the...
I've downloaded the MQe software and SupportPac MA88 and installed. Two MQe QMgrs are exchanging messages OK and I have proceeded to follow instructions in The MQSeries EveryPlace Programming Guide(Chapter 7) configuration example to establish a bridge between MQSaturnQM (Websphere MQ on Win2K)...
You cannot make the mainframe perform rollback in the event of domino failure, because MQSeries is processing asynchronously.
One option would be to set messages from mainframe to domino with MQMD.Expiry = MQEI_UNLIMITED and MQMD.Persistence = MQPER_PERSISTENT. With this, code your domino app...
I believe you need to use either the MQAI (see MQSeries Administration Interface Programming Guide and Reference) or the Programmable Command Format (PCF) (see MQSeries Programmable System Management).
GFC
Process P1 can access the temporary dynamic queue D1 by means of MQPUT1 once MQMD.ReplytoQueue and MQMD.ReplytoQMgr have been specified. In a request/reply scenario, these values would usually be present in the MQMD received in the Request. This is probably the simplest way of achieving what you...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.