【问题标题】:creating proxy using wsdl programmatically and wsdl parsing以编程方式使用 wsdl 和 wsdl 解析创建代理
【发布时间】:2013-09-03 20:17:16
【问题描述】:

我正在研究 XML Web 服务。我的客户端 Web 服务“客户端”在运行时具有服务器 Web 服务“服务”的 wsdl 的 url。为了让“客户端”使用“服务”,我需要“以编程方式”执行以下操作:

1) 从“服务”或磁盘上的某个位置即时获取 wsdl 文件。 2) 以编程方式创建代理,即不使用 wsdl.exe 或添加 Web 引用。 3)在创建的代理上调用方法。

有可能吗?如果有人已经完成了,请采纳任何如何完成的建议。

【问题讨论】:

  • 看起来像XY-Problem,你只想调用webservice的方法,认为所有这些步骤都需要。
  • 我不想为要通信的每个服务都提供服务引用。我想使用一个代理来从 wsdl 动态创建代理?这可能吗?
  • 很有可能。看看this。但这不是创建代理而是创建soap请求。
  • 我不明白投反对票的原因。

标签: c# web-services wsdl


【解决方案1】:

如果您希望在运行时创建代理,请查看这篇文章

https://netmatze.wordpress.com/2012/05/14/building-a-webservice-proxy-at-runtime/

这是原来的答案

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Security.Permissions;
using System.Web.Services.Description;

namespace ConnectionLib
{
    public class WSProxy
    {
        [SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)]
        public static object CallWebService(string webServiceAsmxUrl, string serviceName, string methodName, object[] args)
        {
            System.Net.WebClient client = new System.Net.WebClient();

            // 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 = "Soap12"; // 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(serviceName);

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

                return mi.Invoke(wsvcClass, args);

            }

            else
            {
                return null;
            }
        }
    }
}

【讨论】:

  • @I4V 我已经更新了答案
猜你喜欢
  • 2012-11-22
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2010-10-31
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多