Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by GFC

  1. GFC

    How does the client connect table work?

    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...
  2. GFC

    Error 2110 'sometimes' when reading a message. URGENT!

    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...
  3. GFC

    how can i change bms terminal control commands

    These BMS page commands are 1-7 character values specified by the systems programmer in the SIT . See the CICS System Definition Guide.
  4. GFC

    I am trying to use the equivalent o

    The %INCLUDE member DFHBMSCA contains the BMS values, and shows DFHBLINK represented by the character '1'. Garry.
  5. GFC

    Regarding "Local Communication Address"

    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...
  6. GFC

    Information Request Please.

    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...
  7. GFC

    Reply-to-queue in MqSeries using Visual Basic

    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...
  8. GFC

    mqseries and error 2035

    Have you checked the AMQERR01.LOG file for the associated message. This should indicate for which resource the userid is being debnied access. Garry.
  9. GFC

    Queued or threaded MQPUTs

    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
  10. GFC

    ASCII to EBCDIC for MQ messages

    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...
  11. GFC

    MQEveryPlace to Websphere MQ bridge

    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)...
  12. GFC

    How to code transactions in MQSERIES

    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...
  13. GFC

    QManager Queue List?

    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
  14. GFC

    putting messages to dynmaic Q`s

    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...
  15. GFC

    Two QMGRS on NT

    In the Command Reference, the syntax given is: START LISTENER LUNAME( ) PORT( ) TRPTYPE( ) You require the last two parameters.

Part and Inventory Search

Back
Top