BizTalk Send port wont enlist
Leaving some white-space in the binding file of a send port filter will make the port unable to enlist. Opening the send port from the admin console will reveal a disabled filter section.Incorrect:
<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.ReceivePortName" Operator="0" Value="GetContacts" />
</Group>
</Filter>
</Filter>
Correct:
<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.ReceivePortName" Operator="0" Value="GetContacts" />
</Group>
</Filter>
</Filter>
No comments:
Post a Comment