Click here to Skip to main content
15,891,136 members
Articles / Web Development / ASP.NET

Tutorial on Message Exchange Patterns and Asynchronous Operations in WCF

Rate me:
Please Sign up or sign in to vote.
4.96/5 (15 votes)
31 Mar 2013CPOL10 min read 52.2K   1.1K   62  
This article discusses the various message exchange patterns that the WCF service supports and how to call WCF operations asynchronously

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleService", "SampleService\SampleService.csproj", "{65009440-BA06-4399-88A0-05D9BF8B1D4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WCFTestClient", "WCFTestClient\WCFTestClient.csproj", "{60697BE8-7532-4B5C-89EA-447954B339A6}"
	ProjectSection(ProjectDependencies) = postProject
		{65009440-BA06-4399-88A0-05D9BF8B1D4E} = {65009440-BA06-4399-88A0-05D9BF8B1D4E}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Debug|x86.ActiveCfg = Debug|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Release|Any CPU.Build.0 = Release|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{65009440-BA06-4399-88A0-05D9BF8B1D4E}.Release|x86.ActiveCfg = Release|Any CPU
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Debug|Any CPU.ActiveCfg = Debug|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Debug|x86.ActiveCfg = Debug|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Debug|x86.Build.0 = Debug|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Release|Any CPU.ActiveCfg = Release|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Release|Mixed Platforms.Build.0 = Release|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Release|x86.ActiveCfg = Release|x86
		{60697BE8-7532-4B5C-89EA-447954B339A6}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions