Different WCF Bindings, their differences and compatibility with other platforms

后端 未结 3 1538
栀梦
栀梦 2020-12-22 20:38

I am looking for some good technical details on Topic of WCF bindings, I am interested to know following things.

  1. List of Different WCF Bindings with its specia
3条回答
  •  天涯浪人
    2020-12-22 21:04

    • If you are required to create a binding that is globally inter-operable, use http binding.

    • For internal use, but consumers are in separate servers use tcp binding. It less inter-operable, but using binary encoding which is faster.

    • Use named pipe binding for intra-server communication, that is for consumers hosted in same servers. Named pipe binding is the fastest one in wcf allowed bindings.

    Use bindings appropriately, make your project best.

提交回复
热议问题