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: *

  1. JohnMN

    substring

    Thanks to all for your quick suggestions! In my case, I'll use olded's suggestion for cutting off the last two characters. I forgot that 'NAME' can contain underscore characters, so it's easiest just to cut off the last two characters. John
  2. JohnMN

    substring

    I am writing a script in ksh. The user will input a string in the form: NAME_A. I want to strip off the '_A' part and use 'NAME' in later commands. I will also need to use the 'NAME_A' format, so I can't just have user enter 'NAME'. 'NAME' can be any number of characters, but '_A' will...
  3. JohnMN

    correlationid

    That looks like a "reasonable" correl ID generated by a Queue Manager. I counted 23 bytes, but there might be something after the final b. Parts of it will look funny, but it's not intended to ba a displayable field. To summarize from the manual, there are three sections to the...
  4. JohnMN

    correlationid

    The correlation ID is 24 bytes of binary data. It is NOT a character string. The CorrelID is NOT terminated by a null character. Each byte can contain any hexadecimal value from x00 to xFF. When you create a message, you can store any data you want into the Correlation ID. If the Queue...
  5. JohnMN

    Expiry

    From the MQ API Reference: "This is a period of time expressed in tenths of a second, set by the application that puts the message. The message becomes eligible to be discarded if it has not been removed from the destination queue before this period of time elapses." That means that...
  6. JohnMN

    Can't add users to published app Citrix Metaframe anymore

    I don't know, but I would guess that if you have a lot of users authorized for this application, you might be hitting an internal list limit or something. One thing I do, which make managing who gets which applications easier, is to not add users to the application, but to add a domain group...
  7. JohnMN

    Java books

    http://java.sun.com/docs/books/tutorial/
  8. JohnMN

    2063 MQRC_SECURITY_ERROR

    To communicate with the client, you need to set the MQSERVER environment variable: SET MQSERVER=chl_name/TCP/ipaddr For example: SET MQSERVER=SYSTEM.DEF.SVRCONN/TCP/192.168.1.220 The channel needs to be defined on the Server side as a client connection channel. This...
  9. JohnMN

    Reply-to Remote Dynamic Queue

    When you set up the MQOD before doing the MQOPEN, you need to set the following fields: - ObjectQMgrName needs to be the same as the ReplyToQmgr from the incoming message descriptor. - ObjectName needs to be the same as the ReplyToQ from the incoming message descriptor. John in snowy Minnesota
  10. JohnMN

    FTP in Java

    I did a google search for "java ftp" and came up with over a million hits. The first two are: http://www.enterprisedt.com/downloads/ftp.html http://www.geocities.com/beapetrovicova/ The source code is available for both.
  11. JohnMN

    Remote Queue to Remote Queue?

    Thanks again for your help. I think I know everything now :-) SysA is a test system, and we might switch the testing between three or four different boxes. We don't want to have SysC make any permanent changes. It's a financial application for a bank, so this type of change would require...
  12. JohnMN

    Remote Queue to Remote Queue?

    Thanks for the quick responses! I like the suggestion from pmeekin, but the queue already exists on SysB. Other Apps on SysB are using that queue. As usual, I've managed to find another question in the meantime. I'm trying to figure out what to specify for my reply-to Qmgr. The reply...
  13. JohnMN

    Remote Queue to Remote Queue?

    I have an application that runs on three systems: SysA - NT; SysB - OS/390 (in-house); SysC - OS/390 (business partner) I need to exchange messages between SysA and SysC. Business partner will not allow a channel from NT to their OS/390 system. (Channel from SysB to SysC...

Part and Inventory Search

Back
Top