简体   繁体   English

动态添加Web参考C#

[英]Adding web reference dynamically C#

My code is this: 我的代码是这样的:

internal class WsProxy
{

    [SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)]
    internal static object CallWebService(string webServiceAsmxUrl, string userName, string password, string serviceName, string methodName, object[] args) 
    {

        System.Net.WebClient client = new System.Net.WebClient();
        if (userName.Length > 0)
        {
            client.Credentials = new NetworkCredential(userName, password);
        } 
        // Connect To the web service

        System.IO.Stream stream = client.OpenRead(webServiceAsmxUrl + "?wsdl");

        // Now read the WSDL file describing a service.

        ServiceDescription description = ServiceDescription.Read(stream);

        ///// LOAD THE DOM /////////

        // Initialize a service description importer.

        ServiceDescriptionImporter importer = new ServiceDescriptionImporter();

        importer.ProtocolName = "Soap"; // Use SOAP 1.2.

        importer.AddServiceDescription(description, null, null);

        // Generate a proxy client.

        importer.Style = ServiceDescriptionImportStyle.Client;

        // Generate properties to represent primitive values.

        importer.CodeGenerationOptions = System.Xml.Serialization.CodeGenerationOptions.GenerateProperties;

        // Initialize a Code-DOM tree into which we will import the service.

        CodeNamespace nmspace = new CodeNamespace();

        CodeCompileUnit unit1 = new CodeCompileUnit();

        unit1.Namespaces.Add(nmspace);

        // Import the service into the Code-DOM tree. This creates proxy code that uses the service.

        ServiceDescriptionImportWarnings warning = importer.Import(nmspace, unit1);

        if (warning == 0) // If zero then we are good to go
        {

            // Generate the proxy code

            CodeDomProvider provider1 = CodeDomProvider.CreateProvider("CSharp");

            // Compile the assembly proxy with the appropriate references

            string[] assemblyReferences = new string[5] { "System.dll", "System.Web.Services.dll", "System.Web.dll", "System.Xml.dll", "System.Data.dll" };

            CompilerParameters parms = new CompilerParameters(assemblyReferences);

            CompilerResults results = provider1.CompileAssemblyFromDom(parms, unit1);

            // Check For Errors

            if (results.Errors.Count > 0)
            {

                foreach (CompilerError oops in results.Errors)
                {

                    System.Diagnostics.Debug.WriteLine("========Compiler error============");

                    System.Diagnostics.Debug.WriteLine(oops.ErrorText);

                }

                throw new System.Exception("Compile Error Occured calling webservice. Check Debug ouput window.");

            }

            // Finally, Invoke the web service method

            object wsvcClass = results.CompiledAssembly.CreateInstance("nmspace");//nmspace

            MethodInfo mi = wsvcClass.GetType().GetMethod(methodName);

            return mi.Invoke(wsvcClass, args);

        }

        else
        {

            return null;

        }

    }

And here is how I call it: 这就是我所说的:

object[] arg = new object[5];
WsProxy.CallWebService(@"myurl/somename.asmx", "NameService", "TheMethod", arg); 

But every time, wsvcClass is null. 但是每次wsvcClass为null。

I tried changing 我尝试改变

object wsvcClass = results.CompiledAssembly.CreateInstance("nmspace");

to

object wsvcClass = results.CompiledAssembly.CreateInstance("nmspace."+serviceName);

and it doesn't work. 而且不起作用。

Everyone says that the code works like charm, but I can't get it to work. 每个人都说该代码就像魅力一样工作,但我无法使其正常工作。 Why? 为什么?

UPDATE: Here is what I do when I add the reference dynamically: 更新:这是我动态添加引用时要做的事情:

Namespace.MyService defect = new Namespace.MyService();
defect.Name = "someName";

And here is how I try to do it via code: 这是我尝试通过代码执行的操作:

object wsvcClass = results.CompiledAssembly.CreateInstance("Namespace." + "MyService");
MethodInfo mi = wsvcClass.GetType().GetMethod("Namespace." + "MyService");
return mi.Invoke(null, new object[] { "someName" });

mi is null and I know there's something wrong on the last line too. mi为空,我也知道最后一行也有问题。 It just looks stupid to me. 在我看来,这很愚蠢。

have you tried 你有没有尝试过

object wsvcClass = results.CompiledAssembly.CreateInstance(serviceName);

"nmspace" is wrong as this is the name of your variable, which holds a CodeNamespace with no name. "nmspace"是错误的,因为这是变量的名称,该变量包含一个没有名称的CodeNamespace。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM