I am bit confused where to use wcf and what are it's uses. During my wcf training in ahmedabad they taught me service contract and data contract setup with example, but still i want to explore the subject. Can anyone suggest me few good websites with example and it's explanation. I generally code using C#.
Thanks in advance for the help.
Loading
Hemant KumarPosted Jul 4, 2012, 3:04 AM
You can refer the following links for better understanding the WCF
http://wcftutorial.net/
http://www.aspdotnet-suresh.com/2011/06/introduction-to-wcf-wcf-tutorial-wcf.html
Jignesh TrivediPosted Jul 4, 2012, 3:04 AM
Windows Communication Foundation (WCF) is a framework for building service-oriented applications. Using WCF, you can send data as asynchronous messages from one service endpoint to another. A service endpoint can be part of a continuously available service hosted by IIS, or it can be a service hosted in an application.
with the help of WcF you can centralize your business logic.
Please refer it is good example of creating WCFhttp://www.codeproject.com/Articles/123067/A-Simple-Sample-WCF-Service
http://www.c-sharpcorner.com/UploadFile/mahakgupta/a-simple-example-of-wcf-service/
http://msdn.microsoft.com/en-us/library/ms733103.aspx
hope this will help you.