1. 程式人生 > >WebService 錯誤:無法載入協定為xxx的終結點配置部分,因為找到了該協定的多個終結點配置

WebService 錯誤:無法載入協定為xxx的終結點配置部分,因為找到了該協定的多個終結點配置

當在vs 2008中新增服務引用後,如果“更新”服務引用,或“刪除”該服務引用後再次加入後,在執行時會出現此錯誤。這是因為在“更新/刪除”服務引用時,app.config檔案並不會自動修改,在“更新”或再次“加入”後,會生成兩個同樣的“endpoint”,需要手工刪除掉原有的才能正常執行。

第一次加入後的app.config

<client>
            <endpoint address="http://localhost/WSTest/TestDalWS.asmx" binding="basicHttpBinding"
                bindingConfiguration="TestDalWSSoap6" contract="WSServer.TestDalWSSoap"
                name="TestDalWSSoap6" />
   </client>

對應的 <bing> 也只有一個。

<bindings>
            <basicHttpBinding>
                <binding name="TestDalWSSoap6" closeTimeout="00:01:00" openTimeout="00:01:00"
                    receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
                    bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="None">
                        <transport clientCredentialType="None" proxyCredentialType="None"
                            realm="">
                            <extendedProtectionPolicy policyEnforcement="Never" />
                        </transport>
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>

在“更新”或再次“加入”後,會生成兩個同樣的“endpoint”,需要手工刪除掉原有的才能正常執行。

原創:

或者有另外一種解決方法
   在工程的web.config檔案中
    出現兩個 
      

<endpoint address="http://123.15.40.85:8079/DataUpLoadService.asmx"
        binding="basicHttpBinding" bindingConfiguration="DataUpLoadServiceSoap"
        contract="ServiceReference1.DataUpLoadServiceSoap" name="DataUpLoadServiceSoap" />


     刪除一個就行了