0

これについて多くの質問があることは知っています。すべて試してみましたが、うまくいきませんでした... WS8 で IIS8 を使用し、net.tcp をプロトコル リストに追加し、808 にバインドしましたが、まだこのエラーが発生します。

System.InvalidOperationException: Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http].

以下を使用してブラウザでサービスを開こうとしています: http://192.168.1.101:64410/eve/relay/ClientRelayService.svc

ポート 64410 のサイトで 2 つのテスト サービス (1 つは basichttp、もう 1 つは tcp) を実行しています。他のサービスは正常に動作しています。

私のサーバー側の設定は次のとおりです。

<?xml version="1.0"?>
<configuration>
    <appSettings/>
    <system.web>
        <compilation debug="true" targetFramework="4.0"/>
        <customErrors mode="Off"/>
        <trust level="Full" />
        <httpRuntime/>
    </system.web>
    <system.serviceModel>
        <bindings>
            <netTcpBinding>
                <binding name="tcpBinding" transferMode="Streamed" portSharingEnabled="true">
                    <reliableSession enabled="true" />
                    <security mode="None">
                        <transport clientCredentialType="None" protectionLevel="None" />
                        <message clientCredentialType="None" />
                    </security>
                </binding>
            </netTcpBinding>
        </bindings>

        <services>

            <service name="Eve.API.Services.Relay.RemoteRelayService">
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:64410/eve/relay/" />
                    </baseAddresses>
                </host>
                <endpoint address="" binding="basicHttpBinding" contract="Eve.API.Services.Contracts.Services.Interfaces.IEveAPIService"/>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
            </service>

            <service name="Eve.API.Services.Relay.RelayService">
                <host>
                    <baseAddresses>
                        <add baseAddress="net.tcp://localhost:808/eve/relay/ClientRelayService.svc"/>
                    </baseAddresses>
                </host>
                <endpoint address="" binding="netTcpBinding" bindingConfiguration="tcpBinding" contract="Eve.API.Services.Contracts.Services.Interfaces.IRelayService">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>
                <endpoint address="tcpmex" binding="mexTcpBinding" contract="IMetadataExchange"/>
                <!--<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>-->
            </service>

        </services>
        <behaviors>
            <serviceBehaviors>
                <behavior>
                    <!-- TODO Set to false on deploy -->
                    <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
                    <serviceDebug includeExceptionDetailInFaults="true"/>
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <protocolMapping>
            <add binding="basicHttpsBinding" scheme="https"/>
        </protocolMapping>
        <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="1" multipleSiteBindingsEnabled="true"/>
    </system.serviceModel>
    <system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
        <!-- TODO Set to false on deploy -->
        <directoryBrowse enabled="true"/>
    </system.webServer>
</configuration>
4

1 に答える 1