Part 1 Introduction to WCF

Link for code samples used in the demo<br /> <a href="http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-wcf.html" title="http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-wcf.html" target='_blank'>http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-wcf.html</a><br /> <br /> Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.<br /> <a href="https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1" title="https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1" target='_blank'>https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1</a><br /> <br /> Link for all dot net and sql server video tutorial playlists<br /> <a href="http://www.youtube.com/user/kudvenkat/playlists" title="http://www.youtube.com/user/kudvenkat/playlists" target='_blank'>http://www.youtube.com/user/kudvenkat/playlists</a><br /> <br /> In this video we will discuss<br /> What is WCF <br /> Why should we use WCF<br /> <br /> What is WCF?<br /> WCF stands for Windows Communication Foundation and is part of .NET 3.0. WCF is Microsoft platform for building distributed and interoperable applications.<br /> <br /> What is a distributed application?<br /> In simple terms a distributed application, is an application where parts of it run on 2 or more computers. Distributed applications are also called as connected systems or applications.<br /> <br /> Examples:<br /> A web application running on one machine and a web service that this application is consuming is running on another machine.<br /> An enterprise web application may have the following tiers, and each tier may be running on a different machine<br /> 1. Presentation tier<br /> 2. Business tier<br /> 3. Data Access tier<br /> <br /> Why build distributed applications?<br /> There are several reasons for this<br /> 1. An enterprise application may need to use the services provided by other enterprises. For example an ecommerce application may be using paypal service for payments.<br /> 2. For better scalability. An enterprise web application may have Presentation tier, Business tier, and Data Access tiert, and each tier may be running on a different machine.<br /> <br /> What is an interoperable application?<br /> An application that can communicate with any other application that is built on any platform and using any programming language is called as an interoperable application. Web services are interoperable, where as .NET remoting services are not. Web services can communicate with any application built on any platform, where as a .NET remoting service can be consumed only by a .net application.<br /> <br /> What technology choices did we have before WCF to build distributed applications?<br /> Enterprise Services<br /> Dot Net Remoting<br /> Web Services<br /> <br /> Why should we use WCF?<br /> Let&#039;s take this scenario<br /> We have 2 clients and we need to implement a service a for them. <br /> 1. The first client is using a Java application to interact with our service, so for interoperability this client wants messages to be in XML format and the protocol to be HTTP.<br /> 2. The second client uses .NET, so for better performance this client wants messages formmated in binary over TCP protocol.<br /> <br /> Without WCF<br /> 1. To satisfy the first client requirement we end up implementing an ASMX web service, and<br /> 2. To satisfy the second client requirement we end up implementing a remoting service<br /> <br /> These are 2 different technologies, and have complete different programming models. So the developers have to learn different technologies. <br /> <br /> So to unify and bring all these technologies under one roof Microsoft has come up with a single programming model that is called as WCF - Windows Communication Foundation.<br /> <br /> With WCF,<br /> You implement one service and we can configure as many end points as want to support all the client needs. To support the above 2 client requirements, we would configure 2 end points. In the endpoint configuration we can specify the protocols and message formats that we want to use.<br /> <br /> In Part 2, we will discuss implementing <br /> 1. A web service to exchange messages in XML format using HTTP protocol for interoperability.<br /> 2. A remoting service to exchange messages in binary format using TCP protocol for performance.<br /> Along the way, we will get a feel of how different these technologies are.<br /> <br /> In Part 3, we will dicuss implementing a single WCF Service and configuring different end points to support different transport protocols and message formats.<i class="fa fa-language transViewIcon clickable" title="Translation"></i>

Part 1 Introduction to WCF
Video date 2013/11/17 06:23
Play musics without ads!
Part 1 Introduction to WCF
Once shared, this message disappears.
https://i.ytimg.com/vi/QmfPmqMk9Xs/mqdefault.jpg
https://www.youtube.com/embed/QmfPmqMk9Xs
Part 1 Introduction to WCF
2K+
10:09Part 1 Introduction to WCF
Part 1 Introduction to WCF
00:00
Loading...
Link for code samples used in the demo
http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-wcf.html

Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1

Link for all dot net and sql server video tutorial playlists
http://www.youtube.com/user/kudvenkat/playlists

In this video we will discuss
What is WCF
Why should we use WCF

What is WCF?
WCF stands for Windows Communication Foundation and is part of .NET 3.0. WCF is Microsoft platform for building distributed and interoperable applications.

What is a distributed application?
In simple terms a distributed application, is an application where parts of it run on 2 or more computers. Distributed applications are also called as connected systems or applications.

Examples:
A web application running on one machine and a web service that this application is consuming is running on another machine.
An enterprise web application may have the following tiers, and each tier may be running on a different machine
1. Presentation tier
2. Business tier
3. Data Access tier

Why build distributed applications?
There are several reasons for this
1. An enterprise application may need to use the services provided by other enterprises. For example an ecommerce application may be using paypal service for payments.
2. For better scalability. An enterprise web application may have Presentation tier, Business tier, and Data Access tiert, and each tier may be running on a different machine.

What is an interoperable application?
An application that can communicate with any other application that is built on any platform and using any programming language is called as an interoperable application. Web services are interoperable, where as .NET remoting services are not. Web services can communicate with any application built on any platform, where as a .NET remoting service can be consumed only by a .net application.

What technology choices did we have before WCF to build distributed applications?
Enterprise Services
Dot Net Remoting
Web Services

Why should we use WCF?
Let's take this scenario
We have 2 clients and we need to implement a service a for them.
1. The first client is using a Java application to interact with our service, so for interoperability this client wants messages to be in XML format and the protocol to be HTTP.
2. The second client uses .NET, so for better performance this client wants messages formmated in binary over TCP protocol.

Without WCF
1. To satisfy the first client requirement we end up implementing an ASMX web service, and
2. To satisfy the second client requirement we end up implementing a remoting service

These are 2 different technologies, and have complete different programming models. So the developers have to learn different technologies.

So to unify and bring all these technologies under one roof Microsoft has come up with a single programming model that is called as WCF - Windows Communication Foundation.

With WCF,
You implement one service and we can configure as many end points as want to support all the client needs. To support the above 2 client requirements, we would configure 2 end points. In the endpoint configuration we can specify the protocols and message formats that we want to use.

In Part 2, we will discuss implementing
1. A web service to exchange messages in XML format using HTTP protocol for interoperability.
2. A remoting service to exchange messages in binary format using TCP protocol for performance.
Along the way, we will get a feel of how different these technologies are.

In Part 3, we will dicuss implementing a single WCF Service and configuring different end points to support different transport protocols and message formats.
View comments
This playlist has no title.
Part 1 Introduction to WCF
Share with your friends!
Press emoticons to leave feelings.
#Like
#Like
1
#Funny
#Funny
0
#Sad
#Sad
0
#Angry
#Angry
0
#Cool
#Cool
0
#Amazing
#Amazing
0
#Scary
#Scary
0
#Want more
#Want more
0
97547 https://www.youtube.com/watch?v=QmfPmqMk9Xs Part 1 Introduction to WCF 3
Mark LIKE on the tags!
317884 introduction
180158 to
1
257751 wcf
1
262977 tutorial
333152 beginners
347977 asp.net
332381 C
1
347978 kudvenkat
347979 asp.net 3.5
347980 example
325973 Walkthrough
267348 service
347981 visual studio 2010
Vlogger
Vlogger
8K+
7K+
Subscribe Popular Videos! :)
 
Share page of @Vlogger
UnMark |Edit |Search
Mark |Dislike |Search
Mark |Del |Search
Open
Report
Full screen
Timer
Translation