BUG: "This Page Is Entered with Invalid Parameters" Error Message When You Use the Document Tracking Interface (822560)
The information in this article applies to:
- Microsoft BizTalk Server 2002
SYMPTOMSWhen you try to use the Microsoft BizTalk Document Tracking interface, you may receive the following error message: VBScript: BizTalk Document Tracking This page is entered with
invalid parameters When you click OK, you may
receive the following error message: Microsoft Internet
Explorer: [Microsoft][ODBC Driver Manager] Data source name not found and no
default driver specified. When you click OK in the
second error message box, a blank query results window appears. CAUSEThe Document Tracking interface builds a query string that
uses the organization names as parameters. If an organization name contains
an ampersand character (&), the query string is not valid. Therefore, any ampersand characters that appear in the organization names must be
escaped.WORKAROUNDTo work around this problem, you must modify the Utils.vbs
file that is located in the Program Files\Microsoft BizTalk
Server\BizTalkTracking\VBScripts folder. To do this, follow these steps:
- In a text editor such as Notepad, open the Utils.vbs file for editing.
- Locate the DecodeData function. Add the following line of code to the end of this
function, directly before the line "DecodeData = sData":
sData = Replace(sData, "%38", "&") ' <--- modified to correct ampersand issue
- Locate the EncodeData function. Add the following line of code to the end of this
function, directly before the line "EncodeData = sData":
sData = Replace(sData, "&", "%38") ' <--- modified to correct ampersand issue
- Save the file, and then quit the text editor.
STATUS
Microsoft has confirmed that this is a bug in the Microsoft products that are
listed at the beginning of this article.
Modification Type: | Major | Last Reviewed: | 10/10/2003 |
---|
Keywords: | kbpending kbbug KB822560 kbAudDeveloper |
---|
|