Recently, several WCF services were introduced to our API company. There are implementation examples for Windows that use proxy codes created by Visual Studio 2010 (either a full WCF client or Silverlight code). Everyone looks good.
Then I realized that it is also possible to let Studio generate a Webservices 2.0 client proxy and what can I say:
- It works as well as a WCF client
- It also returns real objects, like WCF
- It also uses SOAP
What the hell is the difference / advantage of the WCF native client?
Please note that I am particularly interested in the CLIENT PARTY. The server side is a completely different story. The point is, why should I connect to the WCF server using the WCF client code if the Web Services client code works so well?
I can also ask a question regarding MONO: WCF support in Mono is far from ideal, and WebServices 2.0 are very good. Therefore, after a fight with WCF, for some time I switched to the WS 2.0 client proxy server and still have not noticed any problems. Are there any problems that I will have to expect?
source share