System.ServiceModel.dll 中的“System.ComponentModel.Win32Exception”(“指定的域不存在,或无法联系。”)。引发了异常: System.ServiceModel.dll 中的“System.ComponentModel.Win32Exception”(“指定的域不存在,或无法联系。”) 15.33 秒 [3752] <无名称> 

解决:此问题的原因是Binding项配置错误,如
<bindings>
            <basicHttpBinding>
                <binding name=”BasicHttpBinding_IService” />
                <binding name=”ODMSSoap11Binding” />
            </basicHttpBinding>
       </bindings>
如这里只指定了basicHttpBinding,但在endpoint中指定binding为wsHttpBinding,则会显示这个错误
<endpoint address=”” binding=”wsHttpBinding”
                  bindingConfiguration=”” contract=”AddInSide.ITankFarmService” >