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

Assembly-based webservice and Javascript proxy using reflection

Rate me:
Please Sign up or sign in to vote.
4.88/5 (17 votes)
30 May 2007CPOL6 min read 67.9K   326   33  
ASP.NET and Ajax Webservices, not from a .asmx file, but from a compiled assembly with a little bit of reflection

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Devusion.AssemblyBasedWebserviceDemo", "Devusion.AssemblyBasedWebserviceDemo.csproj", "{E05C5EB8-3ED6-4CF2-A508-E985BD343550}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Devusion.CustomControls", "CustomControls\Devusion.CustomControls.csproj", "{65696B3C-F238-46E6-A6A5-83A15C0A71A3}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{E05C5EB8-3ED6-4CF2-A508-E985BD343550}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E05C5EB8-3ED6-4CF2-A508-E985BD343550}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E05C5EB8-3ED6-4CF2-A508-E985BD343550}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E05C5EB8-3ED6-4CF2-A508-E985BD343550}.Release|Any CPU.Build.0 = Release|Any CPU
		{65696B3C-F238-46E6-A6A5-83A15C0A71A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{65696B3C-F238-46E6-A6A5-83A15C0A71A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{65696B3C-F238-46E6-A6A5-83A15C0A71A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{65696B3C-F238-46E6-A6A5-83A15C0A71A3}.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
Founder Devusion
Netherlands Netherlands
Robertjan is an independent Developing and usability Consultant.

He has been a speaker at CodeCamp, TechDays and other venues. And blogs regularly on http://www.robertjantuit.nl

His specialaties are User Interfaces, Silverlight, WPF, Custom Controls and Software Architecture, Design and Agile development.

Comments and Discussions