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.
I’m starting this Wiki to collect best practices about creating interoperable web services (not
Share
Fairly simple:
avoid any .NET specifics like Exceptions (turn them into SOAP faults)
don’t use any binding that start with
netlike netTcp, netNamedPipes, netMsmq and so forth – usewsHttpBindingfor secure WS-* services, andbasicHttpBindingfor maximum reach / compatibility with even the weirdest client platformsdon’t use the NetDataContractSerializer