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

Dynamic Discovery and Invocation of Web Services

Rate me:
Please Sign up or sign in to vote.
4.71/5 (37 votes)
26 May 2007CPOL2 min read 163.4K   3.8K   76   33
How to invoke web services without using add/Web reference
Screenshot - WsdlReader.jpg

Introduction

Generally when we use web service, at first we should add it in the web reference and then call its methods statically. Despite having a high speed, it isn't very flexible.

In order to do it dynamically by dynamic invocation of web service, it has a very good flexibility. For example, the source of programs will be compiled once.

We can use any web service that we need. We can watch all of the web service's methods and parameters, automatic assignment methods and parameters.

Generally programmers can do any work with this method. Like other methods, in this method to achieve the flexibility of parameters, the speed is lost. But spending time is more than getting benefits.

Using the Code

One of the communication ways with web service is setup. Giving the information about web service will be done through WSDL file. To do this work, we should produce a WebRequest and send it to the WSDL. All activities about the parts are done by WebRequest.

With calling GetRequest method in Web request, WebRequest will produce a stream that will be sent to the read method of service description object. Read method returns a service description object that contains the information about web service in WSDL. We can call web service methods knowing the explanation of the web and using a proxy class.

The goal of producing a proxy class is making similar code that will be put in Reference.cs. When the user adds web reference in Visual Studio and compiles it, he/she can use it through assembly file in the applied program. The first step is making one instance of service Description importer and its goal is giving the ability to read the information from WSDL and add it to the codeDom.CodeCompilement. After producing the service description importer, we call add service. Description method and send it to the service description object that contains information about the web service that we decide to call it. Now we have an assembly file whose methods and properties are from web service. All of the methods that are presented in proxy class are in the web method property in primary code. These class libraries have a method that returns an array of object from methodInfo to the program, that we can choose some methods and fetch their parameters via using parameterInfo class. For calling the web method, we need to produce an instance of proxy class that we give under type of web service information through Activator, createinstance class.

In order to do this work, we should send the list of parameters to the Invoke method which is expected.

C#
private void DynamicInvocation()
{
Uri uri = new Uri(textBox1.Text);
WebRequest webRequest = WebRequest.Create(uri);
System.IO.Stream requestStream = webRequest.GetResponse().GetResponseStream();
// Get a WSDL file describing a service
ServiceDescription sd = ServiceDescription.Read(requestStream);
string sdName = sd.Services[0].Name;
// Initialize a service description servImport
ServiceDescriptionImporter servImport = new ServiceDescriptionImporter();
servImport.AddServiceDescription(sd, String.Empty, String.Empty);
servImport.ProtocolName = "Soap";
servImport.CodeGenerationOptions = CodeGenerationOptions.GenerateProperties;
CodeNamespace nameSpace = new CodeNamespace();
CodeCompileUnit codeCompileUnit = new CodeCompileUnit();
codeCompileUnit.Namespaces.Add(nameSpace);
// Set Warnings
ServiceDescriptionImportWarnings warnings = servImport.Import(nameSpace, codeCompileUnit);
if (warnings == 0)
{
StringWriter stringWriter = new StringWriter
	(System.Globalization.CultureInfo.CurrentCulture);
Microsoft.CSharp.CSharpCodeProvider prov = new Microsoft.CSharp.CSharpCodeProvider();
prov.GenerateCodeFromNamespace(nameSpace, stringWriter, new CodeGeneratorOptions());
// Compile the assembly with the appropriate references
string[] assemblyReferences = new string[2] 
	{ "System.Web.Services.dll", "System.Xml.dll" };
CompilerParameters param = new CompilerParameters(assemblyReferences);
param.GenerateExecutable = false;
param.GenerateInMemory = true;
param.TreatWarningsAsErrors = false;
param.WarningLevel = 4;
CompilerResults results = new CompilerResults(new TempFileCollection());
results = prov.CompileAssemblyFromDom(param, codeCompileUnit);
Assembly assembly = results.CompiledAssembly;
service = assembly.GetType(sdName);
methodInfo = service.GetMethods();
foreach (MethodInfo t in methodInfo)
{
if (t.Name == "Discover")
break;
 
treeWsdl.Nodes[0].Nodes.Add(t.Name);
}
treeWsdl.Nodes[0].Expand();
}
}

Wsdl Files

On the internet, you could find too many wsdl files of web services, for example:

Thanks

  • to Faramaz Safi (my teacher) for guiding me with this
Screenshot - poem.jpg

License

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


Written By
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAlso a way to do this with REST/ODATA services? Pin
LiQuick28-Jul-14 2:53
LiQuick28-Jul-14 2:53 
QuestionProblem Pin
LeonardoMiller13-Sep-12 13:22
LeonardoMiller13-Sep-12 13:22 
Questionmeaning, Pin
Faisal Hafeez20-Oct-11 19:47
Faisal Hafeez20-Oct-11 19:47 
GeneralMy vote of 4 Pin
Member 40308897-Oct-10 0:59
Member 40308897-Oct-10 0:59 
GeneralEXCEPTION HAS BEEN THROWN BY THE TARGET OF AN INVOCATION Pin
marco alfaro c24-Sep-10 11:43
marco alfaro c24-Sep-10 11:43 
GeneralRe: EXCEPTION HAS BEEN THROWN BY THE TARGET OF AN INVOCATION Pin
Brijesh Shah20-Jul-12 19:49
Brijesh Shah20-Jul-12 19:49 
Generalhello Pin
ggnbf7-Jun-10 5:19
ggnbf7-Jun-10 5:19 
GeneralNumber of output in one WSDL Pin
Angu Thangavel17-May-10 23:13
Angu Thangavel17-May-10 23:13 
GeneralDynamic Discovery and Invocation of Web services Pin
Member 402965431-May-09 19:40
Member 402965431-May-09 19:40 
GeneralRe: Dynamic Discovery and Invocation of Web services Pin
Ehsan Golkar19-Mar-10 18:31
Ehsan Golkar19-Mar-10 18:31 
GeneralInvalid Operation Exception Pin
TraderJack8-Dec-08 5:47
TraderJack8-Dec-08 5:47 
QuestionRe: Invalid Operation Exception Pin
Suganya Sundararajan21-Dec-08 18:07
Suganya Sundararajan21-Dec-08 18:07 
AnswerRe: Invalid Operation Exception Pin
Member 386121626-Jun-10 13:14
Member 386121626-Jun-10 13:14 
GeneralThanks...!!! Pin
Suditha Priyan27-Nov-08 22:26
Suditha Priyan27-Nov-08 22:26 
GeneralRe: Thanks...!!! Pin
Ehsan Golkar28-Nov-08 7:24
Ehsan Golkar28-Nov-08 7:24 
GeneralRe: Thanks...!!! Pin
Suditha Priyan30-Nov-08 19:29
Suditha Priyan30-Nov-08 19:29 
Generalthanks Pin
tittatty15-May-08 8:52
tittatty15-May-08 8:52 
QuestionUnable to Import Binding from namespace Pin
asukuq9-Apr-08 20:42
asukuq9-Apr-08 20:42 
GeneralRuntime error... Pin
Sara_4613-Apr-08 9:00
Sara_4613-Apr-08 9:00 
GeneralRe: Runtime error... Pin
Sara_4613-Apr-08 9:30
Sara_4613-Apr-08 9:30 
AnswerRe: Runtime error... Pin
Ehsan Golkar3-Apr-08 18:30
Ehsan Golkar3-Apr-08 18:30 
GeneralRe: Runtime error... Pin
cawoodm11-Jun-08 5:20
cawoodm11-Jun-08 5:20 
Questionweb serrvice returning user defined object... Pin
quantum558-Nov-07 15:03
quantum558-Nov-07 15:03 
QuestionAdd Soap Header? Pin
Gridlock13-Oct-07 18:18
Gridlock13-Oct-07 18:18 
AnswerRe: Add Soap Header? Pin
Ehsan Golkar21-Oct-07 2:21
Ehsan Golkar21-Oct-07 2:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.