0

で実行される REST ベースのサービスの場合、より高速になるようWebHttpBindingに、同じマシン上でサービス間通信の機能を追加できNetNamedPipeBindingますか?

ありがとう!

4

1 に答える 1

0

私があなたの質問を正しく理解していれば、異なるバインディングを持つ複数のエンドポイントを追加したいでしょう。

例えば:

<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>
于 2012-08-18T20:20:17.413 に答える