Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
非常に単純なWCFサービス(通常のwshttpバインディング)のWSDLがあります。開発を進めることができるように、IISで単純なモックアップサービスを構築してホストする予定です。これを行うための簡単な方法/便利なツールはありますか?ありがとう
サービスはまったく必要ありません。インターフェイスを使用して、モックサービスを作成するだけです。
[ServiceContract] public interface ICalculator { [OperationContract] int Add(int a, int b); } public class MyMockCalculator : ICalculator { public int Add(int a, int b) { return 0; } }