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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: chksi
  • Order by date
  1. chksi

    MQ sample compiles on Solaris

    Samples have a message buffer length set to 99 bytes. In the source code in MQPUT & MQGET set the buffer length to your desired length.
  2. chksi

    How to attach file to MQSeries message

    Here's a sample code: ------------------------------------------- Const CCHBUFFER = 272 Private Function Get_All() Dim md As MQMD 'message desciptor Dim gmo As MQGMO 'get message options Dim buflen As Long 'length of get buffer Dim Buffer As String * CCHBUFFER 'got...
  3. chksi

    How to attach file to MQSeries message

    Thanks mbhide, I was not clear about "MQ FTP", it is not an IBM definition, I meant it works as FTP.
  4. chksi

    How to attach file to MQSeries message

    Use Reference messages as stated in IBM MQ Series Application Programming Guide on page 144. It works as MQ FTP. They have sample programs in different languages there as well.
  5. chksi

    MQseries beginner

    You have to have an MQClient or MQServer installed on your NT. Then have a program that would read from a queue, extract the message data and send it to Oracle.
  6. chksi

    MQGET problem

    I have done it in C and not sure how it is done in VB, but in MQGET function specify the following values: /*Set MatchOptoons to search by Correlation ID , this is in a GET Message Option Attribute*/ gmo.MatchOptions = MQMO_MATCH_CORREL_ID; /*Copy the message id from MQPUT into a Correlation...
  7. chksi

    Reson codes list

    Get yourself or download IBM's "MQSeries Application Programming Reference". It has everything that you are looking for. IBM book ref# SC33-1673-05

Part and Inventory Search

Back
Top