Monday, December 17, 2012

Problem Enlisting Send Port

Error:
Unable to communicate with MessageBox BizTalkMsgBoxDb Error Code: 0x8004d00e.
etc.

Solution:


Sometime it happens that you edited the binding file and due to encoding issue of visual studio while saving whitespaces created at starding and ending of FILTER element.
Like
<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" Operator="0" Value="
http://Dummy#DummyH" /&gt;
&lt;/Group&gt;
&lt;/Filter&gt;

</Filter>
So, update it to as below

<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" Operator="0" Value="
http://Dummy#DummyH" /&gt;
&lt;/Group&gt;
&lt;/Filter&gt;
</Filter>


HopeFully it should work out for you as worked for me.


Regards
Kundan

 

No comments:

Post a Comment