何ヶ月も触れていないプロジェクトをピックアップしました。プロジェクトを使用してWCFを学習しました。これをVisualStudioで実行すると、生成されたWSDLを取得できるページが開き、コードをヒットできます。サービスの。
しかし、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 and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- 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="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
サービスエンドポイントなどはありませんが、正常に動作します(少なくとも、Visual Studioでは)。これはどのように機能しますか?