I'm starting this Wiki to collect best practices about creating interoperable web services (not clients) in WCF. Please share your experience if you know any feature which is not generally interoperable or which is not interoperable with specific platform.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Fairly simple:
avoid any .NET specifics like Exceptions (turn them into SOAP faults)
don't use any binding that start with
net
like netTcp, netNamedPipes, netMsmq and so forth - usewsHttpBinding
for secure WS-* services, andbasicHttpBinding
for maximum reach / compatibility with even the weirdest client platformsdon't use the NetDataContractSerializer
回答2:
I recommend WCF REST exposing multiple serialization formats, definitely xml for starters.
回答3:
General interoperability:
- Only HTTP and HTTPS transport channels are interoperable
- Negotiation of security credentials is not interoperable (negotiateServiceCredential in message security). It uses TLSNego or SPNego protocols which are not always supported by other platforms.
- HTTP streaming can cause troubles as well
- Binary encoding over HTTP channel is not interoperable
- OleTransactions are not interoperable
- Use service security context with care (estabilishSecurityContext in message security). It uses WS-Secure Conversation protocol which is not available on some platforms
Edit:
- WSDualHttpBinding and CompositeDuplexBindingElement are not interoperable