When deploying a send port you can obtain this error :
Could not enlist send port ‘[Send Port Name]‘ Exception from HRESULT: 0xC00CE557(Microsoft.BizTalk.ExplorerOM)
It’s a binding problem when your port has a filter expression;
To confirm that you can check in your console Administration, and you’ll not find your expression which is in your binding file.
SOLUTION
Now go to your port declaration in your binding file
Find the filter tag.
<Filter>
<?xml version= »1.0″ encoding= »utf-16″?>
<Filter xmlns:xsi= »http://www.w3.org/2001/XMLSchema-instance » xmlns:xsd= »http://www.w3.org/2001/XMLSchema« >
<Group>
<Statement Property= »BTS.MessageType »…….
</Group>
</Filter>
</Filter>
And here is the error, you’ve got two New line after the tag declaration and before the end tag declaration
your filter tag must write like this :
<Filter><?xml version= »1.0″ encoding= »utf-16″?>
<Filter xmlns:xsi= »http://www.w3.org/2001/XMLSchema-instance » xmlns:xsd= »http://www.w3.org/2001/XMLSchema« >
<Group>
<Statement Property= »BTS.MessageType »…….
</Group>
</Filter></Filter>
just delete the two newLines and forget this problem
Image may be NSFW.
Clik here to view.

Clik here to view.
