Carlo Adap
Carlo Adap

Reputation: 157

Use of WCF in ASP.NET WebForms C#

What is the use of WCF or what are the advantage having WCF in a ASP.NET Website?

Thank you in advance!

Can you guys simply explain to me before getting a negative opinions to you guys? :) Thank you

Upvotes: 1

Views: 730

Answers (1)

Rahul Tripathi
Rahul Tripathi

Reputation: 172378

  1. WCF can maintain transaction like COM+ does
  2. It can maintain state
  3. It can control concurrency
  4. It can be hosted on IIS, WAS, self-hosting, Windows services
  5. It has AJAX Integration and JSON (Javascript object notation) support

Check out the this

Here is a quick look at the WCF:-

enter image description here

========================================================================

One advantage is you can easily switch protocols and serialization from binary remoting all the way to web protocols. It's also easy to host either in IIS or out.

Upvotes: 1

Related Questions