1

リモート Web サービスでメソッドを呼び出そうとする Windows サービスがありますが、「ServiceModel クライアント構成セクションでコントラクト 'MyWebService.BookingCitySoap' を参照するデフォルトのエンドポイント要素が見つかりませんでした」というエラーが表示されます。アプリケーションの構成ファイルが見つかったか、このコントラクトに一致するエンドポイント要素がクライアント要素に見つからなかったためです。」

以下はそのためのコードです

.cs ファイル

MyWebService.BookingCitySoapClient ws = new MyWebService.BookingCitySoapClient();

                ws.CallBookStatus();

                ws.CallCanStatus();

App.config

<bindings>
        <basicHttpBinding>
            <binding name="BookingCitySoap" 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="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:51317/Web/BookingCity.asmx"
            binding="basicHttpBinding" bindingConfiguration="BookingCitySoap"
            contract="MyWebService.BookingCitySoap" name="BookingCitySoap" />
    </client>
4

0 に答える 0