C # Dynamic Call WebService

Source: Internet
Author: User
Tags wsdl

<summary>
Dynamically invoking Web Services
</summary>
<param name= "url" >wsdl service address </param>
<param name= "ClassName" > class name </param>
<param name= "methodname" > method name </param>
<param name= "args" > Parameters </param>
<returns></returns>
public static object Invokewebservice (string url, string classname, String methodname, object[] args)
{
String @namespace = "Jztey. Api ";
if ((classname = = null) | | (ClassName = = ""))
{
classname = webservicehelper.getwsclassname (URL);
}
Try
{
Get WSDL
WebClient WC = new WebClient ();
Stream stream = WC. OpenRead (URL + "?) WSDL ");
ServiceDescription sd = Servicedescription.read (stream);
ServiceDescriptionImporter SDI = new ServiceDescriptionImporter ();
Sdi. Addservicedescription (SD, "", "");
CodeNamespace cn = new CodeNamespace (@namespace);
Generate the client proxy class code
CodeCompileUnit CCU = new CodeCompileUnit ();
Ccu. Namespaces.add (CN);
Sdi. Import (CN, CCU);
CSharpCodeProvider ICC = new CSharpCodeProvider ();
Setting compilation parameters
CompilerParameters cplist = new CompilerParameters ();
Cplist. GenerateExecutable = false;
Cplist. GenerateInMemory = true;
Cplist. Referencedassemblies.add ("System.dll");
Cplist. Referencedassemblies.add ("System.XML.dll");
Cplist. Referencedassemblies.add ("System.Web.Services.dll");
Cplist. Referencedassemblies.add ("System.Data.dll");
Compiling proxy classes
CompilerResults cr = Icc.compileassemblyfromdom (cplist, CCU);
if (true = = Cr. Errors.haserrors)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder ();
foreach (System.CodeDom.Compiler.CompilerError ce in CR. Errors)
{
Sb. Append (CE. ToString ());
Sb. Append (System.Environment.NewLine);
}
throw new Exception (sb.) ToString ());
}
Build the proxy instance and call the method
System.Reflection.Assembly Assembly = cr.compiledassembly;
Type t = assembly. GetType (@namespace + "." + ClassName, True, true);
Object obj = activator.createinstance (t);
System.Reflection.MethodInfo mi = t.getmethod (methodname);
Return MI. Invoke (obj, args);
/*
PropertyInfo PropertyInfo = type. GetProperty (PropertyName);
return propertyinfo.getvalue (obj, null);
*/
}
catch (Exception ex)
{
throw new Exception (ex. Innerexception.message, New Exception (ex. Innerexception.stacktrace));
}
}
private static string Getwsclassname (String wsurl)
{
string[] parts = wsurl.split ('/');
string[] pps = parts[parts. LENGTH-1]. Split ('. ');
return pps[0];
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.