Reference books, you may like: Programming WCF Services: Design and Build Maintainable Service-Oriented Systems WCF Multi-Layer Services Development with Entity Framework, 4th Edition Learning WCF: A Hands-on Guide
WCF Restful Services
CORS in WCF REST Service
In this article, we will learn: What is CORS? How CORS works? How to solve cross origin request in WCF Rest What is CORS? Cross-origin resource sharing (CORS) is […]
Five steps to create a WCF Rest service
In our previous articles, we understood: What is Rest service in WCF? Architectural principles in Rest Hello world restful service Let’s create a WCF rest service. Step 1: Create a […]
Architectural Principles in Rest
This post aims to explain the following : – What are REST architectural principles ? – What is HATEOAS ? Here are the architectural principle in REST : Addressability: In […]
Hello world Restful service in WCF
In this article we will create a simple Hello world Restful service. Visual studio –>File–>New–>project–>WCF–>WCF Service Application and rename it to BasicRestService Delete all default code from service1.svc.cs and also […]
What is Rest Service in WCF
What is Rest? Representational state transfer(REST) is an abstraction of architecture of world wide web. REST is an architectural style to design networked application.REST makes communication between remote computers easy […]