A silent configuration of the BizTalk Adapter for MQSeries is unsuccessful if you specify a value of "thisuser" for the AppIdentity element in the Config.xml file (904848)



The information in this article applies to:

  • Microsoft BizTalk Adapter for MQSeries v2.0

SYMPTOMS

Consider the following scenario. You try to run a silent configuration of the MQSAgent in the Microsoft BizTalk Adapter for MQSeries. You specify a value of "thisuser" for the AppIdentity element in the Config.xml file. In this scenario, the configuration is unsuccessful.

CAUSE

This problem occurs because the "thisuser" value is not in the correct case. The "t" in "this" and the "u" in "user" must be capitalized.

RESOLUTION

To resolve this problem, specify a value of "ThisUser" for the AppIdentity element in the Config.xml file.

For example, the following BizTalk Adapter for MQSeries configuration file specifies the AppIdentity element together with a value of "ThisUser" in the correct case:
<MQSeriesConfig>
    <AppIdentity>ThisUser</AppIdentity>
    <userid>Domain\UserName</userid>
    <password>UserPassword</password>
    <rolename>CreatorOwner</rolename>
    <userlist>
        <username>Domain\UserName1</username>
        <username>Domain\UserName2</username>
    </userlist>
</MQSeriesConfig>
Note To run a silent configuration of the MQSAgent in the BizTalk Adapter for MQSeries, use the following command:

mqsconfigwiz /i config.xml /l logfile

MORE INFORMATION

For more information about the BizTalk Adapter for MQSeries, visit the following Microsoft Web site:

Modification Type:MajorLast Reviewed:8/24/2005
Keywords:kbBTSAdapters kbtshoot kbinfo kbprb KB904848 kbAudDeveloper kbAudITPRO