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 wOOdy-Soft 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 pmeekin

  1. pmeekin

    Port number of MQ manager

    Alternatively, if you look at the jobs running in the QMQM subsystem you should see one called runmqlsr. Look at the joblog for this job and it should show the parameters that it was started with. If you don't see anything that means it was started without a port so will default to 1414...
  2. pmeekin

    com.ibm.mq.MQException: MQJE001: An MQException occurred: Completion C

    Depending upon the platform you are running this on, if you run the command mqrc passing the Reason code as a parameter it will give you the meaning of the error message. In this case, mqrc 2035 returns "MQRC_NOT_AUTHORIZED". Your userid is not authorised to connect to the remote QMgr. As this...
  3. pmeekin

    Building MQ -> Oracle adaptor ?

    That's pretty much what you need to do. Presumably if you're using J2EE you'll be using the MQ JMS classes?
  4. pmeekin

    Urgent help on MQSeries and LDAP

    Firstly you need to get the MQM Java classes installed onto your client machine. This is normally done by downloading the relevant IBM support pac for your platform and installing the Java option. Install the Developers Toolkit too. This will provide you with several examples of JMS code which...
  5. pmeekin

    Java client connection to server MQ manager

    What version of MQ are you using for your Java client? Only version 6 uses the chanel table.
  6. pmeekin

    Data sent over IBM MQ series comes out reversed.

    If it's binary data that's being revesed it's probably the ENCODING attribute of the Message Descriptor that needs to be corrected. This is unusual as the source and target encodings are normally correct. Make sure that the encoding for the message as sent and as received are correct for the...
  7. pmeekin

    Sending OS/390 datasets

    Don't forget that Reference messages are not supported on the Mainframe. Although not necessarily the best solution, a common method of doing this is for the putting program to read the first n bytes of the file, append a header detailing e.g. segment number 1, total bytes in file etc. and then...
  8. pmeekin

    Using dmpmqlog

    The -b parameter means start dumping from the start of the active log. You need to specify -s or -n instead. Check out the System Admin guide for full details. MQ 5.1 is very very old and long out of support so I can't guarantee that these options were available then. You really should be...
  9. pmeekin

    Multiple sender channel point to single receiver channel

    This is a bit old but I was wondering if you've sorted it out HS. Can you start all 3 pairs of channels simultaneously (with no messages flowing)? aixmurderer ( :-) )- You can have multiple Receiver channels and a single sender. The Receiving QMgr maintains one sequence number for each sender...
  10. pmeekin

    Multiple sender channel point to single receiver channel

    What you've done should work fine, as long as the 3 sending QMgrs are on different hosts. I think that MQ keeps track of the different Channels by their IP addresses. Are your senders on different hosts?
  11. pmeekin

    Why won't the Conv option work in a MQGET?

    Are you specifying CONVERT for the browse? If not, it will fill in the CCSID of your Message Descriptor structure with the original CCSID of the message. Then unless you reset this to your local CCSID subsequent GETs will not convert as the message is already in this CCSID. If the first Browse...
  12. pmeekin

    Why won't the Conv option work in a MQGET?

    Just to be sure, the format needs to be 'MQSTR '. Cheers, Paul
  13. pmeekin

    security channel exit

    ... and... is it in the exits directory or are you providing a fully qualified path as well? Cheers, Paul
  14. pmeekin

    security channel exit

    How are you specifying it on the channel? If this is Windows and you linked this into a DLL called myexits.dll I would expect you to specify it like this: alter channel .... scyexit('myexits(ChannelExit)') Cheers, Paul
  15. pmeekin

    v5.3 vs v5.2 issues

    I've not heard of any incompatibilities between the 2 releases. Are you sure you haven't enabled SSL on the 5.3 channel? Is there anything in either of the logs that might indicate the problem? You could post the channel defs for both channels and we can take a look at them. Cheers, Paul

Part and Inventory Search

Back
Top