Re: Custom Disassembler Component Question

Home Page Forums BizTalk 2004 – BizTalk 2010 Custom Disassembler Component Question Re: Custom Disassembler Component Question

#24134

Hi Justin,

The disassembler will publish already ‘disassembled’ body messages to the database. It will not wait until the complete interchange has been processed. Everytime the GetNext method of the disassembler is called and not returns null a message is published to the database.

Make sure to implement a streaming approach in your component. Return a body message a soon as possible.

The delay in your case can indeed be caused by lack of resources on the BizTalk server. You can use performance monitor to find out if and why BizTalk  is throttling.