0
對於基於REST的服務,使用WebHttpBinding
運行,我可以在同一臺機器上添加與NetNamedPipeBinding
的服務間通信功能,以便它更快嗎?我可以同時使用WebHttpBinding和NetNamedPipeBinding嗎?
謝謝!
對於基於REST的服務,使用WebHttpBinding
運行,我可以在同一臺機器上添加與NetNamedPipeBinding
的服務間通信功能,以便它更快嗎?我可以同時使用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>