Duplicate Namespace Issue with Schema Validation in Pipeline Components

Today I was tasked with enabling XML schema validation for an existing WCF receive location in BizTalk. The client was already using the out-of-the-box XmlReceive pipeline, so I figured this would be short work, finished by lunchtime after all the regression tests had been run. Little did I suspect that I would run into a snag that would enlighten me to a new BizTalk “feature”.

Because of a compressed time schedule, we wanted to avoid having to add a new custom pipeline to the solution, even one as simple as containing a standard XmlValidator component. So instead, I opted to use port-based configuration by enabling validation within the XmlDissembler component in the existing XmlReceive pipeline. Of course, this does require specifying the list of specific schemas in the DocumentSpecNames property on the port instance:

SchemaValidation-Settings

The trick here, of course, is to ensure you get these specifications correct, as they need to be fully qualified assembly (FQN) references. Moreover, if you are expecting multiple message types, you need to separate the entries with a pipeline (“|”) delimiter, something not so obvious if you don’t read the Microsoft documentation. Even less obvious is how to deal with multipart schemas that contain multiple root nodes (at least this blog post sheds some light there).

This client was indeed expecting multiple message types, so I sourced the FQN’s by finding the deployed schemas in the Schemas node under the application in the BizTalk  Admin Console (use a comma to separate the .NET schema name from the assembly name):

SchemaValidation-GetFQN

Confident that I had the list correct, I was surprised to keep getting the following error during testing:

There was a failure executing the receive pipeline: “Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35” Source: “XML disassembler” Receive Port: “XmlValidationReceivePort” URI: “C:\BizTalk\Folders\XML_VAL_IN\*.xml” Reason: The document failed to validate because of the following error:”The ‘http://XmlValidationTest.CommonNamespace:Schema1′ element is not declared.” .

How can it say that the root node name is not declared when clearly it is a recognised message type in BizTalk??

Interestingly, when I removed either one of the two schemas from the list, it worked fine in both cases! Surely I didn’t get the delimiter wrong? To prove this, I added third schema to the list, and it still worked – but only if just one of the two original schemas was specified.

Looking more closely, I realised that these two schemas shared the same target namespace – even though their root nodes (and consequently, BTS.MessageType) was different. So I decided to  see what was happening under the covers by creating a custom pipeline version of what I was doing in the port, i.e. adding an XmlDisassembler component in the Visual Studio Pipeline Designer and using the picker to select the two schemas in the Document Schemas property. This enabled me to inspect the XML generated by the component within the pipeline:

SchemaValidation-HiddenProps

What do you know… there’s this hidden DocumentSpecTargetNamespaces property which (oddly enough) lists all the target namespaces that go with the schemas specified in the DocumentSpecNames property! I don’t know exactly what the BizTalk engine does with this property (I would welcome any enlightening comments from those more knowledgeable than I about this), but I was willing to bet that having the same target namespace specified twice was going to cause some confusion.

To prove this, I changed the target namespace in one of the schemas and lo & behold – it all worked fine! Now I was not only avoiding the previous error, but got the expected error messages for both invalid message formats and unrecognised messages:

There was a failure executing the receive pipeline: “Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35” Source: “Pipeline ” Receive Port: “XmlValidationReceivePort” URI: “C:\BizTalk\Folders\XML_VAL_IN\*.xml” Reason: The document failed to validate because of the following error:”The element ‘Schema2’ in namespace ‘http://XmlValidationTest.CommonNamespace2′ has invalid child element ‘UnexpectedElement’. List of possible elements expected: ‘Element2’.” .

There was a failure executing the receive pipeline: “Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35” Source: “XML disassembler” Receive Port: “XmlValidationReceivePort” URI: “C:\BizTalk\Folders\XML_VAL_IN\*.xml” Reason: No Disassemble stage components can recognize the data.

The next step would be to confirm if using the XmlValidator component instead would yield the same results…and this yielded some very interesting results. I changed the custom pipeline in the Pipeline Designer to remove the schema validation in the XmlDisassembler component, and added an XmlValidator instead. The good thing about this component is that it does not require a list of schemas to be specified in the DocumentSpecNames property (unless you want to limit the allowed message types) – if left blank it will automatically validate against any matching schema found in the database.

I discovered that when you did not populate the DocumentSpecNames property, everything worked fine. It correctly validated any message submitted as long as it could find a matching schema deployed in the database, even if there were multiple schemas sharing the same namespace. Hooray! Smile

However, looking at the XML behind the pipeline, I noticed that it too uses the hidden DocumentSpecTargetNamespaces property. So I tried adding my document specification list:

XmlValidationTest.Schema1,XmlValidationTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5751c30f9b49b7bb|XmlValidationTest.Schema2,XmlValidationTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5751c30f9b49b7bb

And what do you know… it broke again! Same error as before (“…The ‘http://XmlValidationTest.CommonNamespace:Schema1′ element is not declared.”)  Apparently, two listing of the same namespace within the hidden DocumentSpecTargetNamespaces property confuses the engine the same way as it does in the XmlDisassembler component.

So in summary, the lessons learned pertaining to XML schema validation in BizTalk Server are:

  • Try to use unique target namespaces when defining your BizTalk message types.  Admittedly, you may not always be able to do this when employing schemas from external entities that your organisation does not own.
  • If you must validate schemas that use a common namespace, then use an XmlValidator component in a custom receive pipeline (along with an XmlDisassembler, of course) to perform the validation – but ensure that you DO NOT specify any schemas in the DocumentSpecNames property! Note that this pipeline will accept messages of any type that is currently deployed to the BizTalkMgmtDb database.
  • In addition, if you need to restrict the message types allowed through the port, then use the DocumentSpecNames property on the XmlDisassembler component to specify the target schemas (without turning validation on in that component). In this way, the disassembler will filter the message types whilst the validator will correctly perform its function on the types that are allowed through the disassembler. See the example configuration below:

SchemaValidation-BestSettings

About Dan Toomey
Enterprise integration geek, Microsoft Azure MVP, Pluralsight author, public speaker, MCSE, MCT, MCTS & former professional musician.

6 Responses to Duplicate Namespace Issue with Schema Validation in Pipeline Components

  1. Danny Fafach says:

    Ran into the exact same issue today and your post was very helpful. Thanks!

  2. Having read this I believed it was extremely informative.
    I appreciate you taking the time and effort to put this short article together.
    I once again find myself spending way too much time both
    reading and posting comments. But so what, it was still worth
    it!

  3. Arghya says:

    Worrked like a charm!

  4. Great post Dan. I’ve tried above workarounds but my issue was with the service bus adapter in BizTalk 2013 R2. It’s a known issue at Microsoft and took me 2 days to fix it.

    Error which I was getting when receiving an Azure service bus (queue or topic/subscription) that contains brokered message properties.
    “The adapter “SB-Messaging” raised an error message. Details “System.Exception: Loading property information list by namespace failed or property not found in the list. Verify that the schema is deployed properly. ”

    Here’s a link for resolution:
    https://social.msdn.microsoft.com/Forums/en-US/991ea151-f06c-4517-9344-1e88abe7645d/bug-in-sbmessaging-adapter?forum=biztalkr2adapters

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

John Glisson - Geek of the Cloth

Thoughts on integration, technology and what-not...

Prashant BizTalk And Azure Integration Blogs

My Integration Experiences - BizTalk And Azure Integration

The CRUCIBLE

THINK: It's not illegal....yet.....

Abdul Rafay's BizTalk Blog

My experiences with BizTalk related to architecture, development and performance in my enterprise.

BizTalk musings

Issues, patterns and useful tips for BizTalk development

EAI Guy.net

Enterprise Applicaiton Integration and SOA 2.0

Connected Pawns

Mainly BizTalk & Little Chess

Adventures inside the Message Box

BizTalk, Azure, and other tools in the Microsoft stack - Johann Cooper

Biz(Talk)2

Talk, talk and more talk about BizTalk

Richard Seroter's Architecture Musings

Blog Featuring Code, Thoughts, and Experiences with Software and Services

Sandro Pereira BizTalk Blog

My notes about BizTalk Server 2004, 2006, 2006 R2, 2009, 2010, 2013 and now also Windows Azure BizTalk Services.

BizTalk Events

Calendar of BizTalk events all over the world!

Mind Over Messaging

Musings on BizTalk, Azure, and Enterprise Integration

WordPress.com News

The latest news on WordPress.com and the WordPress community.

%d bloggers like this: