Quantcast
Viewing latest article 1
Browse Latest Browse All 2

Could not enlist send port ‘[Send Port Name]‘ Exception from HRESULT: 0xC00CE557(Microsoft.BizTalk.ExplorerOM)

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>
&lt;?xml version= »1.0″ encoding= »utf-16″?&gt;
&lt;Filter xmlns:xsi= »http://www.w3.org/2001/XMLSchema-instance » xmlns:xsd= »http://www.w3.org/2001/XMLSchema« &gt;
&lt;Group&gt;
&lt;Statement Property= »BTS.MessageType »…….
&lt;/Group&gt;
&lt;/Filter&gt;
</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>&lt;?xml version= »1.0″ encoding= »utf-16″?&gt;
&lt;Filter xmlns:xsi= »http://www.w3.org/2001/XMLSchema-instance » xmlns:xsd= »http://www.w3.org/2001/XMLSchema« &gt;
&lt;Group&gt;
&lt;Statement Property= »BTS.MessageType »…….
&lt;/Group&gt;
&lt;/Filter&gt;</Filter

just delete the two newLines and forget this problem


Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.

Viewing latest article 1
Browse Latest Browse All 2

Trending Articles