1

WCF テスト クライアントで正常に実行される WCF ServiceLibrary を使用しています。

現在、この Web サービスをホストする Web サイトを構築しようとしています。私はnettcpバインディングを使用しています。私のweb.configファイルは次のようになります

   <system.web>
    <compilation debug="false" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="tcp_Unsecured" portSharingEnabled="true">
          <security mode="None"/>
        </binding>
      </netTcpBinding>
    </bindings>
    <services>
      <service behaviorConfiguration="tcpServiceBehavior" name="MarketFeedServiceLibrary.Service1">
        <endpoint address="" binding="netTcpBinding" bindingConfiguration="tcp_Unsecured"
          name="data" contract="MarketFeedServiceLibrary.IService1" />
        <endpoint address="mextcp" binding="mexTcpBinding" name="metadata"
          contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8080/MarketFeedSite/MarketFeedService.svc" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="tcpServiceBehavior">
          <serviceMetadata httpGetEnabled="false" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

ソリューション エクスプローラーから直接ブラウザーで表示しようとしています

ここに画像の説明を入力

しかし、以下に示すようにエラーが発生します

NetTcpBinding をバインドするエンドポイントのスキーム net.tcp に一致するベース アドレスが見つかりませんでした。登録されているベース アドレス スキームは [http] です。

SO、YouTubeなどで利用可能なすべてのソリューションを試しましたが、うまくいきませんでした.

私は試した:

  1. IIS でhttp,net.tcpプロトコルを有効にしました
  2. 私も経験しました:方法: WCF アクティベーション コンポーネントをインストールして構成する

NB 私は WPF アプリ開発者なので、WCF と ASP.NET Web サイトは初めてです。

ありがとうございました。

編集:WCFクライアントでテストすると、次のエラーが発生します

net.tcp://localhost:8080/MarketFeedSite/MarketFeedService.svc からメタデータを取得できませんこれがアクセス権を持つ Windows (R) Communication Foundation サービスである場合は、指定されたアドレスでのメタデータ公開が有効になっていることを確認してください。WS-Metadata Exchange エラー URI: net.tcp://localhost:8080/MarketFeedSite/MarketFeedService.svc メタデータに解決できない参照が含まれています: 'net.tcp://localhost:8080/MarketFeedSite/MarketFeedService.svc'。net.tcp://localhost:8080/MarketFeedSite/MarketFeedService.svc に接続できませんでした。接続の試行は、00:00:01.9968000 の期間継続しました。TCP エラー コード 10061: ターゲット マシンがアクティブに拒否したため、接続できませんでした 127.0.0.1:8080。ターゲット マシンがアクティブに拒否したため、接続できませんでした 127.0.0.1:8080

4

0 に答える 0