Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What's the difference between a WCF call and a regular method call?
Posted
Updated 15-Jul-10 11:52am
v2

1 solution

A simplistic explanation would be that the WCF method is invoked on the WCF host machine (typically a remote server). Visual Studio and C# allow you to do this easily by generating proxy classes for you. So you invoke a method on the local proxy class (and it will invoke the actual call on the WCF service).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900