What is WCF and WF in .NET? What are its uses? How to start learning it?
Thanks for answers, they are great guideline for me. But I want to ask where should I use thins WCF service? In which scenario we can use it properly?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
WCF = Windows Communication Foundation
A communication-oriented set of APIs and a “runtime” inside .NET to make two (or more) systems talk to one another. It basically replaces ASMX (ASP.NET web services), .NET remoting (object remoting) and a few other communication-related API’s and products in the .NET space.
It can and should be used any time two systems (apps, machines) need to exchange information, basically. It’s the foundation for all “connected systems”.
Your ultimate destination is the MSDN Developer Center for WCF which has a ton of tutorials, articles, sample code, screen casts, videos and much more.