What is the difference between Webservice and WCF

Answer Posted / arif imteyaz

ASP.NET Web Method is called ASMX [because of the file
extension] (check 4GuysFromRolla about this, they have a
good tutorial)

That technology makes you expose functions as a Web Service
so you can connect it from everywhere and use it. But... you
can't protect the data between server and client, you can
send big files clear and know what happend, etc...

[Note] you can protect the access to the web service using
certificates, but it is complicated but normally, in ASMX we
use username / passsword.

in WCF, you are in the different world about Web
Services,and this s the best technology in .NET to expose
Services (can you see the difference... Services! not Web
Services), WCF does not need IIS to run, it can run as a
System Service on the server, using a console ambient (like
command line), etc, so we say that WCF is a Service not Web
Service. Remember ASMX need IIS to run.

with WCF you can use SSL to encrypt the communication (to do
that in ASMX you need to use WSE - Web Services
Enhancements), you can send big files and securely (to do
that in ASMX you need to use MTOM - Message Transmission
Optimization Mechanism).

you can set the transmission preferences just changing one
line of code, the security is much higher, etc, etc :)

hope you get a better general overview with this, but there
is much more.

bottom line: to expose Web Services that you do not need to
protect, you can use ASMX, no problem at all, but if you
need to protect the communication somehow, do it in WCF!

link: you can read here some performance comparative between
the 2 services

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you deploy your asp.net application?

668


Define repository pattern in asp.net mvc? : asp.net mvc

673


What is validation in asp.net?

754


What is http protocol and how it works?

699


Describe in brief .net framework and its components.

733


Explain how asp.net different from asp?

770


Define page output caching?

734


Contrast OOP and SOA. What are tenets of each ?

1932


Explain the advantages of asp.net.

710


Why do you use the app_code folder in asp.net?

742


Disable browser cache for entire ASP.NET website?

856


IN an ASP.NET Web application if there is any error, how can you debug?

793


What is bound controls

766


Explain the difference between codebehind="mycode.aspx.cs" and src="mycode.aspx.cs"?

720


Define what is razor? : asp.net mvc

744