私は基本的な wcf サービスを持っていますが、それをテストするために wcfctestclient に移動すると、メタデータが見つからないというエラーが表示されます。追加してください。残念ながら、エラー ポップアップの MSDN リンクが壊れており、私の WCF サービスの app.configメタデータが有効になっています:
<serviceBehaviors>
<behavior name="TelerikWcfServices.Service1Behavior">
<!-- 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="False" />
</behavior>
</serviceBehaviors>
それ以外は、コードの他の場所でメタデータ設定を変更していません。
メタデータを有効にしてエラーを修正できる場所はどこですか?