で実行される REST ベースのサービスの場合、より高速になるようWebHttpBinding
に、同じマシン上でサービス間通信の機能を追加できNetNamedPipeBinding
ますか?
ありがとう!
私があなたの質問を正しく理解していれば、異なるバインディングを持つ複数のエンドポイントを追加したいでしょう。
例えば:
<service name = "MyService">
<endpoint
address = "http://localhost:8000/MyService"
binding = "wsHttpBinding"
contract = "IMyContract"
/>
<endpoint
address = "net.tcp://localhost:8001/MyService"
binding = "netTcpBinding"
contract = "IMyContract"
/>
<endpoint
address = "net.tcp://localhost:8002/MyService"
binding = "netTcpBinding"
contract = "IMyOtherContract"
/>
</service>