Share this

Could not enlist Send Port ‘SendPort1’. The text associated with this error code could not be found.

I came across an error while trying to enlist one of my send ports while deploying a BizTalk application in a new environment.
Could not enlist Send Port 'SendPort1'. The text associated with this error code could not be found.

REASON

This error was caused by an erroneous carriage return and line feed in the send port <Filter></Filter> element of an imported binding file. [code language="xml"] <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.ReceivePortName" Operator="0" Value="CRMSAP.Receive.OneWay" /&gt; &lt;/Group&gt; &lt;Group&gt; &lt;Statement Property="BTS.MessageType" Operator="0" Value="http://Microsoft.LobServices.Sap/2007/03/Rfc/#_x002F_BIC_x002F_CQZWS_ONE00001000Response" /&gt; &lt;/Group&gt; &lt;/Filter&gt; </Filter> [/code]

SOLUTION

Remove the line break after the <Filter> tag to fix the issue. [code language="xml"] <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.ReceivePortName" Operator="0" Value="CRMSAP.Receive.OneWay" /&gt; &lt;/Group&gt; &lt;Group&gt; &lt;Statement Property="BTS.MessageType" Operator="0" Value="http://Microsoft.LobServices.Sap/2007/03/Rfc/#_x002F_BIC_x002F_CQZWS_ONE00001000Response" /&gt; &lt;/Group&gt; &lt;/Filter&gt; </Filter> [/code]

Loved this? Spread the word


Gautam

Follow me here

About the Author

My name is Gyanendra Kumar Gautam. I am Solution Consultant, who basically works to hook the stuff together using Microsoft technologies like Azure PaaS, Azure Serverless Services, Microsoft BizTalk Server, and Azure DevOps Services.

You may also like

REST support in BizTalk Server

What is REST? Representational State Transfer (ReST) is a software architecture style consisting of guidelines and best practices for creating scalable web services. ReST has gained widespread acceptance across the Web as a simpler alternative to SOAP and WSDL-based Web services. REST makes use of existing and widely adopted technologies, specifically HTTP, and does not

Read More

Security Features in BizTalk Server

BizTalk Server enables companies to automate business processes, through the use of adapters which are tailored to communicate with different software systems used in an enterprise. In a common scenario, BizTalk enables companies to integrate and manage automated business processes by exchanging business documents such as purchase orders and invoices between disparate applications, within or

Read More

Never miss a good story!

 Subscribe to my blog to keep up with the latest news!