IIS 7 で WCF サービス参照をホストしており、wsdl パスは次のとおりです。
http://localhost:82/CustomService.Service1.svc as it is running **on Port 82**
asp.net Web サイトをフォルダーに公開し、そのフォルダーを別のポート 81 のIIS 7 にコピーしました 。default.aspx を参照できますが、この Web サイトから WCF サービスを呼び出す方法は次のとおりです。Web 構成は次のとおりです。
<client>
<endpoint address="http://localhost:82/CustomService.Service1/"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService1"
contract="MyServiceReference.IService1" name="WSHttpBinding_IService1">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
</client>
ASP.net からサービスを実行しようとすると
http://localhost:82/CustomService.Service1
、メッセージを受け入れることができるエンドポイントがありませんでしたというエラーが表示されます
助けてください