动态调用webservice,就可以不用添加web引用了,上线的话也只是需要改一下wsdl地址就可以了
1.动态调用的方法:
C#代码
class="star" src="/Upload/Images/2014061015/40B102E0EF997EA6.png" alt="收藏代码" />
-
-
-
-
- public string wsTest()
- {
- string url = "http://localhost:8080/myWebserviceTest/services/myServices?wsdl";//wsdl地址
- string name = "wsTest";
- WebServiceProxy wsd = new WebServiceProxy(url, name);
-
- string[] str = { "测试c#调用java的webService" , "Hello WebService"};
-
- string suc = (string)wsd.ExecuteQuery(name, str);
-
- return suc;
- }
2.动态调用具体类:
C#代码
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Linq;
- using System.Web;
- using System.Web.Services;
- using System.Web.Services.Protocols;
- using System.Xml.Linq;
-
-
- using System.IO;
- using System.Net;
- using System.CodeDom;
- using System.CodeDom.Compiler;
- using System.Web.Services.Description;
- using System.Xml.Serialization;
- using System.Web.Services.Discovery;
- using System.Xml.Schema;
- using System.Text;
- using System.Security.Cryptography;
- using System.Reflection;
- using System.Collections.Generic;
- using System.Xml;
-
- namespace TPSVService
- {
-
-
-
- [WebService(Namespace = "http://tempuri.org/")]
- [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
- [ToolboxItem(false)]
-
-
- public class WebServiceProxy : System.Web.Services.WebService
- {
-
- #region 私有变量和属性定义
-
-
-
- private string _wsdlUrl = string.Empty;
-
-
-
- private string _wsdlName = string.Empty;
-
-
-
- private string _wsdlNamespace = "FrameWork.WebService.DynamicWebServiceCalling.{0}";
-
-
-
- private Type _typeName = null;
-
-
-
- private string _assName = string.Empty;
-
-
-
- private string _assPath = string.Empty;
-
-
-
- private object _instance = null;
-
-
-
- private object Instance
- {
- get
- {
- if (_instance == null)
- {
- _instance = Activator.CreateInstance(_typeName);
- return _instance;
- }
- else
- return _instance;
- }
- }
- #endregion
-
- #region 构造函数
- public WebServiceProxy(string wsdlUrl)
- {
-
- this._wsdlUrl = wsdlUrl;
- string wsdlName = WebServiceProxy.getWsclassName(wsdlUrl);
- this._wsdlName = wsdlName;
- this._assName = string.Format(_wsdlNamespace, wsdlName);
- this._assPath = Path.GetTempPath() + this._assName + getMd5Sum(this._wsdlUrl) + ".dll";
- this.CreateServiceAssembly();
- }
-
- public WebServiceProxy(string wsdlUrl, string wsdlName)
- {
- this._wsdlUrl = wsdlUrl;
- this._wsdlName = wsdlName;
- this._assName = string.Format(_wsdlNamespace, wsdlName);
- this._assPath = Path.GetTempPath() + this._assName + getMd5Sum(this._wsdlUrl) + ".dll";
- this.CreateServiceAssembly();
- }
- #endregion
-
- #region 得到WSDL信息,生成本地代理类并编译为DLL,构造函数调用,类生成时加载
-
-
-
- private void CreateServiceAssembly()
- {
- if (this.checkCache())
- {
- this.initTypeName();
- return;
- }
- if (string.IsNullOrEmpty(this._wsdlUrl))
- {
- return;
- }
- try
- {
-
- WebClient web = new WebClient();
- Stream stream = web.OpenRead(this._wsdlUrl);
- ServiceDescription description = ServiceDescription.Read(stream);
- ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
- importer.ProtocolName = "Soap";
- importer.Style = ServiceDescriptionImportStyle.Client;
- importer.CodeGenerationOptions = CodeGenerationOptions.GenerateProperties | CodeGenerationOptions.GenerateNewAsync;
- importer.AddServiceDescription(description, null, null);
-
- CodeNamespace nmspace = new CodeNamespace(_assName);
- CodeCompileUnit unit = new CodeCompileUnit();
- unit.Namespaces.Add(nmspace);
- this.checkForImports(this._wsdlUrl, importer);
- ServiceDescriptionImportWarnings warning = importer.Import(nmspace, unit);
- CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
- CompilerParameters parameter = new CompilerParameters();
- parameter.ReferencedAssemblies.Add("System.dll");
- parameter.ReferencedAssemblies.Add("System.XML.dll");
- parameter.ReferencedAssemblies.Add("System.Web.Services.dll");
- parameter.ReferencedAssemblies.Add("System.Data.dll");
- parameter.GenerateExecutable = false;
- parameter.GenerateInMemory = false;
- parameter.IncludeDebugInformation = false;
- CompilerResults result = provider.CompileAssemblyFromDom(parameter, unit);
- provider.Dispose();
- if (result.Errors.HasErrors)
- {
- string errors = string.Format(@"编译错误:{0}错误!", result.Errors.Count);
- foreach (CompilerError error in result.Errors)
- {
- errors += error.ErrorText;
- }
- throw new Exception(errors);
- }
- this.copyTempAssembly(result.PathToAssembly);
- this.initTypeName();
- }
- catch (Exception e)
- {
- throw new Exception(e.Message);
- }
- }
- #endregion
-
- #region 执行Web服务方法
-
-
-
-
-
-
- public object ExecuteQuery(string methodName, object[] param)
- {
- object rtnObj = null;
- string[] args = new string[2];
- List<string> list = new List<string>();
- List<string> list1 = new List<string>();
- List<string> list2 = new List<string>();
- object[] obj = new object[3];
-
- try
- {
- if (this._typeName == null)
- {
-
- throw new TypeLoadException("Web服务访问类名【" + this._wsdlName + "】不正确,请检查!");
- }
-
- MethodInfo mi = this._typeName.GetMethod(methodName);
- if (mi == null)
- {
-
- throw new TypeLoadException("Web服务访问方法名【" + methodName + "】不正确,请检查!");
- }
- try
- {
- if (param == null)
- rtnObj = mi.Invoke(Instance, null);
- else {
- list.Add("Hello ");
- list.Add("WebService ");
- list.Add(" ! ");
-
- list1.Add("I ");
- list1.Add("am ");
- list1.Add("test ");
-
- list2.Add("do ");
- list2.Add("it ");
- list2.Add("now ");
-
- obj[0] = list;
- obj[1] = list1;
- obj[2] = list2;
-
- rtnObj = mi.Invoke(Instance, new object[] { obj });
-
- }
- }
- catch (TypeLoadException tle)
- {
-
- throw new TypeLoadException("Web服务访问方法【" + methodName + "】参数个数不正确,请检查!", new TypeLoadException(tle.StackTrace));
- }
- }
- catch (Exception ex)
- {
- throw new Exception(ex.Message, new Exception(ex.StackTrace));
- }
- return rtnObj;
- }
-
-
-
-
-
-
- public void ExecuteNoQuery(string methodName, object[] param)
- {
- try
- {
- if (this._typeName == null)
- {
-
- throw new TypeLoadException("Web服务访问类名【" + this._wsdlName + "】不正确,请检查!");
- }
-
- MethodInfo mi = this._typeName.GetMethod(methodName);
- if (mi == null)
- {
-
- throw new TypeLoadException("Web服务访问方法名【" + methodName + "】不正确,请检查!");
- }
- try
- {
- if (param == null)
- mi.Invoke(Instance, null);
- else
- mi.Invoke(Instance, param);
- }
- catch (TypeLoadException tle)
- {
-
- throw new TypeLoadException("Web服务访问方法【" + methodName + "】参数个数不正确,请检查!", new TypeLoadException(tle.StackTrace));
- }
- }
- catch (Exception ex)
- {
- throw new Exception(ex.Message, new Exception(ex.StackTrace));
- }
- }
- #endregion
-
- #region 私有方法
-
-
-
- private void initTypeName()
- {
- Assembly serviceAsm = Assembly.LoadFrom(this._assPath);
- Type[] types = serviceAsm.GetTypes();
- string objTypeName = "";
- foreach (Type t in types)
- {
- if (t.BaseType == typeof(SoapHttpClientProtocol))
- {
- objTypeName = t.Name;
- break;
- }
- }
- _typeName = serviceAsm.GetType(this._assName + "." + objTypeName);
- }
-
-
-
-
-
-
- private void checkForImports(string baseWsdlUrl, ServiceDescriptionImporter importer)
- {
- DiscoveryClientProtocol dcp = new DiscoveryClientProtocol();
- dcp.DiscoverAny(baseWsdlUrl);
- dcp.ResolveAll();
- foreach (object osd in dcp.Documents.Values)
- {
- if (osd is ServiceDescription) importer.AddServiceDescription((ServiceDescription)osd, null, null); ;
- if (osd is XmlSchema) importer.Schemas.Add((XmlSchema)osd);
- }
- }
-
-
-
-
-
- private void copyTempAssembly(string pathToAssembly)
- {
- File.Copy(pathToAssembly, this._assPath);
- }
-
- private string getMd5Sum(string str)
- {
- Encoder enc = System.Text.Encoding.Unicode.GetEncoder();
- byte[] unicodeText = new byte[str.Length * 2];
- enc.GetBytes(str.ToCharArray(), 0, str.Length, unicodeText, 0, true);
- MD5 md5 = new MD5CryptoServiceProvider();
- byte[] result = md5.ComputeHash(unicodeText);
- StringBuilder sb = new StringBuilder();
- for (int i = 0; i < result.Length; i++)
- {
- sb.Append(result[i].ToString("X2"));
- }
- return sb.ToString();
- }
-
-
-
-
-
- private bool checkCache()
- {
- if (File.Exists(this._assPath))
- {
- return true;
- }
- return false;
- }
-
-
- private static string getWsclassName(string wsdlUrl)
- {
- string[] parts = wsdlUrl.Split('/');
- string[] pps = parts[parts.Length - 1].Split('.');
- return pps[0];
- }
- #endregion
- }
- }
java接口可以用Object[]类型接收参数
创建个c#的webservice应用,可以运行本示例