0

以下の行については、エラーが発生しています-

トピック接続ファクトリーを作成するための私の行:

set aMQJMSProvider [$AdminConfig getid "/JMSProvider:Default messaging provider/"]
set aMQTopicCF [$AdminConfig getid "/Node:vistaNode/MQTopicConnectionFactory:vistaCCTopicFactory/"]

set nameAttr [list name vistaCCTopicFactory]

set jndiAttr [list jndiName jms/vista/vistaCCTopicFactory]]

set mappingModuleAttr [list mapping [list [list authDataAlias vistaNode/DefaultSSLSettings] [list mappingConfigAlias DefaultPrincipalMapping]]]

set attrs [list $nameAttr $jndiAttr $mappingModuleAttr]

set aMQTopicCF [$AdminConfig create MQTopicConnectionFactory $aMQJMSProvider $attrs]

エラー:

[exec] com.ibm.ws.scripting.ScriptingException: WASX7444E: コマンド「create」のパラメーター「parent config id」の無効なパラメーター値「」

[exec] 実行中

[exec] "$AdminConfig create MQTopicConnectionFactory $aMQJMSProvider $attrs"

[exec] invoked from within

[exec] "set aMQTopicCF [$AdminConfig create MQTopicConnectionFactory $aMQJMSProvider $attrs]"

[exec]     (file "C:/proj/deploy/vista/application.jacl" line 112)

[exec]     (file line 112)

[exec]     invoked from within

[exec] "source $APPLICATION_DEPLOY_SOURCE/application.jacl"

[exec] Loading of application failed. Please make sure application.jacl exists and syntax is correct.

[exec] A failure occurred while installing the application onto the Deployment Manager.

[exec] Return code = 1

[exec] WASX7341W: No "save" was performed before the interactive scripting session exited; configuration changes will not be saved.

TCFを作成する手順が記載されているすべてのIBMリンクを試しましたが、同じことをしていますが解決できません。この問題を解決するために貴重なコメントを提供してください。

前もって感謝します。ディーパル

4

1 に答える 1

0

エラーメッセージは、

$AdminConfig getid "/JMSProvider:Default messaging provider/"

最初の行で、空の文字列を返しています。「デフォルト・メッセージング・プロバイダー」という名前の JMSProvider が構成内に存在しますか?

于 2016-04-29T16:27:41.027 に答える