BUG: You receive a "Schema is not deployed" error message when you run the ArbitraryXPathSample sample that is included in the BizTalk Server 2004 SDK (884419)



The information in this article applies to:

  • Microsoft BizTalk Server 2004 Enterprise Edition
  • Microsoft BizTalk Server 2004 Developer Edition
  • Microsoft BizTalk Server 2004 Partner Edition
  • Microsoft BizTalk Server 2004 Standard Edition

SYMPTOMS

In Microsoft BizTalk Server 2004, when you run the ArbitraryXPathSample sample that is included in the BizTalk Server 2004 SDK, you may receive an error message that is similar to the following:
Event Type: Error
Event Source: BizTalk Server 2004
Event Category: BizTalk Server 2004
Event ID: 5719
Date: 10/29/2004
Time: 11:36:56 AM
User: N/A Computer: ComputerName
Description:
There was a failure executing the receive pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLReceive" Source: "XML disassembler" Receive Location: "C:\Temp\In\*.xml" Reason: The disassembler cannot retrieve the document specification by using this type: "BindingInfo". Either the schema is not deployed correctly, or more than one schema is deployed for the same message type.

CAUSE

You receive this error message because of the Save method that is on line 254 in the ArbitraryXPathPropertyHandlerComp.cs file. Typically, the file is located in the following folder:

C:\Program Files\Microsoft BizTalk Server 2004\SDK\Samples\Pipelines\

RESOLUTION

To resolve this issue, you must change the following code beginning with line 254 in the ArbitraryXPathPropertyHandlerComp.cs file:
documentSpecNamesStringBuilder.Append (documentSchemaList[c].DocSpecName) ;
Change the code to the following:
documentSpecNamesStringBuilder.Append (documentSchemaList[c]);

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed in the "Applies to" section.

Modification Type:MinorLast Reviewed:3/22/2005
Keywords:kbfix kbtshoot kbbug KB884419 kbAudDeveloper kbAudITPRO