Orchestration XPath Debatching error

Home Page Forums BizTalk 2004 – BizTalk 2010 Orchestration XPath Debatching error

Viewing 1 reply thread
  • Author
    Posts
    • #13129

      I was trying the sample provided on biztalkgurs.com for XPath Debatching I have used the following xml file as input.

      [color=darkblue:3b9b7ad349]<SomeRoot>
      <Body>
      <anything>A</anything>
      </Body>
      <Body>
      <anything>B</anything></Body>
      <Body>
      <anything>C</anything>
      </Body>
      </SomeRoot>[/color:3b9b7ad349]

      But i doesn’t get any output.
      The error in event viewer is:

      [color=brown:3b9b7ad349]There was a failure executing the send pipeline: \”Microsoft.BizTalk.DefaultPipelines.XMLTransmit\” Source: \”XML assembler\” Send Port: \”C:\\BizTalk Sample\\SampleDebatching\\Out\\Output%MessageID%.xml\” Reason: This Assembler cannot retrieve document specification by using this type: \”Body\”. [/color:3b9b7ad349]

      regards,

    • #13128

      The Xml Disassembler is looking for a schema to match to this message.
      This is done by using the root node and target namespace to create a message type of namespace#root.

      In your case the message type is #SomeRoot and Biztalk can not find the matching schema.

      I suspect your schema definition has a target namespace and the document should look like:

      <SomeRoot xmlns=\”your target namespace\”>
      <Body>
      <anything>A</anything>
      </Body>
      <Body>
      <anything>B</anything></Body>
      <Body>
      <anything>C</anything>
      </Body>
      </SomeRoot>

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.