Error:
Unable to communicate with MessageBox BizTalkMsgBoxDb Error Code: 0x8004d00e.
etc.
Solution:
" xmlns:xsd="http://www.w3.org/2001/XMLSchema">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>
<?xml version="1.0" encoding="utf-16"?>
<Filter xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance
<Group>
<Statement Property="BTS.MessageType" Operator="0" Value="
http://Dummy#DummyH" />
</Group>
</Filter>
</Filter>
So, update it to as below
<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" Operator="0" Value="
http://Dummy#DummyH" />
</Group>
</Filter>
</Filter>
HopeFully it should work out for you as worked for me.
Regards
Kundan
No comments:
Post a Comment