Click here to Skip to main content
15,886,045 members
Articles / Programming Languages / C#

Integrating WCF Services into UDDI based enterprise SOA

Rate me:
Please Sign up or sign in to vote.
4.87/5 (16 votes)
27 Jan 2009CPOL18 min read 69.1K   749   42  
Shows how to integrate WCF services into a UDDI based SOA. This includes the discovery of WCF services at runtime and the runtime configuration of the client.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicWCFFactory", "DynamicWCFFactory\DynamicWCFFactory.csproj", "{D03BAC7A-FE63-4B8E-BE5E-D3CC66F94AB6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicWCFFactoryTests", "DynamicWCFFactoryTests\DynamicWCFFactoryTests.csproj", "{374632AD-B9BB-4FB8-BE5F-BE15502A9618}"
	ProjectSection(ProjectDependencies) = postProject
		{C0C8EF03-6F36-4296-B801-64A346F8D038} = {C0C8EF03-6F36-4296-B801-64A346F8D038}
	EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{95F93C57-9209-43CE-8A20-55C62B13B83B}"
	ProjectSection(SolutionItems) = preProject
		DynamicWCFFactory.vsmdi = DynamicWCFFactory.vsmdi
		LocalTestRun.testrunconfig = LocalTestRun.testrunconfig
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UDDIServiceFactory", "UDDIServiceFactory\UDDIServiceFactory.csproj", "{A1E6BDE7-2B72-4D78-9343-FC122080840F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WcfService", "WcfService\WcfService.csproj", "{C0C8EF03-6F36-4296-B801-64A346F8D038}"
EndProject
Global
	GlobalSection(SubversionScc) = preSolution
		Svn-Managed = True
		Manager = AnkhSVN - Subversion Support for Visual Studio
	EndGlobalSection
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = DynamicWCFFactory.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{D03BAC7A-FE63-4B8E-BE5E-D3CC66F94AB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{D03BAC7A-FE63-4B8E-BE5E-D3CC66F94AB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{D03BAC7A-FE63-4B8E-BE5E-D3CC66F94AB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{D03BAC7A-FE63-4B8E-BE5E-D3CC66F94AB6}.Release|Any CPU.Build.0 = Release|Any CPU
		{374632AD-B9BB-4FB8-BE5F-BE15502A9618}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{374632AD-B9BB-4FB8-BE5F-BE15502A9618}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{374632AD-B9BB-4FB8-BE5F-BE15502A9618}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{374632AD-B9BB-4FB8-BE5F-BE15502A9618}.Release|Any CPU.Build.0 = Release|Any CPU
		{A1E6BDE7-2B72-4D78-9343-FC122080840F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A1E6BDE7-2B72-4D78-9343-FC122080840F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A1E6BDE7-2B72-4D78-9343-FC122080840F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A1E6BDE7-2B72-4D78-9343-FC122080840F}.Release|Any CPU.Build.0 = Release|Any CPU
		{C0C8EF03-6F36-4296-B801-64A346F8D038}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C0C8EF03-6F36-4296-B801-64A346F8D038}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C0C8EF03-6F36-4296-B801-64A346F8D038}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C0C8EF03-6F36-4296-B801-64A346F8D038}.Release|Any CPU.Build.0 = Release|Any CPU
	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
Germany Germany
being IT-Engineer since 1995 I am freelancing since then. From networks to programming, from system administration to DBA, from AIX to Windows I offer a wide range of IT-Skill's without considering me the ultimate expert in each area.
I try to avoid complexity wherever I can and so my philosophy is to strictly follow KISS principles.

Comments and Discussions