随笔分类 - webServices
摘要:public static object Invokewebservice(string url, string @namespace, string classname, string methodname, object[] args) { try { WebClient wc = new WebClient(); Stream stream = wc.OpenRead(url + "?wsdl"); ServiceDescription sd = ServiceDescription.Read(stream); ServiceDescriptionImporter s
阅读全文