2

WCF でサービスを作成し、FTP 経由で IIS サーバーに公開しました。

それを使用するWPFプログラムにサービス参照を追加すると、指定されたURLにサービスが見つかりませんでした。

IIS サーバー上の場所に移動してエラーを表示すると、次のメッセージが表示されます

サービスにはアプリケーション (非インフラストラクチャ) エンドポイントがありません。これは、アプリケーションの構成ファイルが見つからなかったか、サービス名に一致するサービス要素が構成ファイルに見つからなかったか、サービス要素にエンドポイントが定義されていなかったためである可能性があります。

を使って参照しています。

https://site/folder/MyService.svc

ここで何が欠けているのでしょうか?

追加された web.config

<?xml version="1.0"?>
<configuration>

<system.web>
 <compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the value below to false before deployment -->
      <serviceMetadata httpGetEnabled="false"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>

4

1 に答える 1