Home Page › Forums › BizTalk 2004 – BizTalk 2010 › BTS 2006 MS Help File Tutorial – Tutorial 1 Problem › BTS 2006 MS Help File Tutorial – Tutorial 1 Problem
When an Xml message arrives at the XmlDisassembler component of the XmlReceive Pipeline the message type is determined. The root node name and namespace are concatenated to form the message type. In you case http://EAISchemas.Request#Request. So the message has a root node like
<Request xmlns=\”http://EAISchemas.Request\”>
or
<ns0:Request xmlns:ns0=\”http://EAISchemas.Request\”>
The XmlDisassembler will try and find a deployed schema that matches this message. The schema will have a root node of [b:a4db35ecde]Request[/b:a4db35ecde] and a TargetNamespace of [b:a4db35ecde]http://EAISchemas.Request[/b:a4db35ecde].
Is this schema deployed?
You can check the Schemas node under <All Artifacts> in the Biztalk Admin Console.
Remember both node name and namespace are case-sensitive