English 中文(简体)
B. 界定网络范围MQ的行政订阅
原标题:Defining WebSphere MQ administrative subscriptions
  • 时间:2012-01-13 18:02:11
  •  标签:
  • ibm-mq

我们正在使用IBM的网吧MQ,并发行通过文字制作行政订阅。 其中一名助理期望有一个现有的模式,但出于某种原因,它从我们的环境中消失。 难道这完全是一个问题,但想知道是否有办法绕过模式,制造任何订阅途径?

The link I m looking at is the Messages & Codes manual section containing AMQ8464. Please scroll down to see AMQ8464. I guess we re missing the Insert_3 but hopefully there is a way around not having it. The full text of the error is as follows:

If the command entered was Change or Display, the subscription specified does not exist. If the command entered was Copy, the source subscription does not exist. If the command entered was Create, the system default MQ subscription does not exist.

感谢任何想法。

问题回答

在试图复制或删除订阅时,这一错误是可以推倒的,预计现有订阅量为t。 由于你试图确定订阅,我们可以假定,错误手册中描述的最后一件事是我们希望的——不存在。 在设立QMgr时(假定WMQ为0.7或更大版本)就界定了这一订阅。 有两个途径可以收回。

  1. Define the subscription manually. All that is required for this to work is to specify all the fields in the subscription.
  2. Use the strmqm -c command as described here. This will redefine any default system objects that have been manually deleted, including the default subscription.

第1号工程的理由是,WMQ将使用你在上规定的任何参数,然后由你从中抽出的任何参数看。 SYSTEM.DEFAULT.SUB 反对确定当地违约值。 如果你提供这些数值的all,那么它就没有必要研究违约标的,而只是界定你所说的任何内容。 这意味着,你可以界定自己的订阅,或者就这一点而言,你可以界定“海关编码”。 The following DEFINE statement recreates SYSTEMEM.DEFAULT.SUB without forced to end andstart the QMgr using the -c:

DEFINE SUB(SYSTEM.DEFAULT.SUB) + 
       TOPICSTR(  ) +
       TOPICOBJ(  ) +
       DEST(  ) +
       DESTQMGR(  ) +
       PUBAPPID(  ) +
       SELECTOR(  ) +
       USERDATA(  ) +
       PUBACCT(0000000000000000000000000000000000000000000000000000000000000000) + 
       DESTCORL(000000000000000000000000000000000000000000000000) +
       DESTCLAS(PROVIDED) +
       EXPIRY(UNLIMITED) + 
       PSPROP(MSGPROP) + 
       PUBPRTY(ASPUB) +
       REQONLY(NO) + 
       SUBSCOPE(ALL) + 
       SUBLEVEL(1) + 
       VARUSER(ANY) +
       WSCHEMA(TOPIC) +
       SUBUSER(  )




相关问题
Setting LDAP Configuration in IBM Websphere Message Broker

I m a newbe for message broker. I m trying to create webservice security in message broker authenticated using LDAP. but the authentication is always fail in my SOAP message header I have specify ...

How can I get an existing JMS queue?

I feel like this is probably a pretty simple question, but this is my first foray into JMS, so I am a little unsure. I am trying to write to an existing JMS queue (and then read from another queue), ...

MQ EOL Data conversion

we are sending data trough MQ from a z/OS/CICS system to an AS400. Original encoding of the message is CCSID 500 with a MQSTR Format. The client application is getting the message with the CONVERT ...

Connecting to an MQ: Newbie question

I am a novice with Websphere MQ and require some novice help. I am using Websphere MQ Explorer to connect to a queue but do not know how to write the connection string. I have all the details (host, ...

热门标签