C#调用导航web服务而不添加web引用



我正在进行一个项目,该项目要求我连接到Microsoft Dynamics NAV web服务并获取一些数据。但是,我们无法从开发环境访问此web服务,因此我无法以通常的方式向我的项目添加web引用。

有没有一种方法,在运行时通过提供URL、用户、密码&领域然后创建动态对象,并调用web服务的方法?(所以我会制作一个控制台应用程序,它只在生产环境中运行,因为可以访问web服务)

从我最初的研究中,我发现了几种方法,其中有一个函数,它返回对象类型的对象。我通常会遇到以下凭据问题:未经授权的访问(401)

顺便说一句,我对这些网络服务很陌生。。。

到目前为止,我一直在使用的方法,没有任何运气:

internal static object CallWebService(string webServiceAsmxUrl, string serviceName, string methodName, object[] args)
    {
        System.Net.WebClient client = new System.Net.WebClient();
        CredentialCache cc = new CredentialCache();
        cc.Add(
            new Uri(webServiceAsmxUrl),
            "NTLM",
            new NetworkCredential("user", "password", "domain"));
        client.Credentials = cc;
        // 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);
        //THIS IS WHERE IT's NOT COMPLYING. warning will be "NoGeneratedCode"
        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;
        }
    }

它总是返回null。

它是web服务(还是)WCF服务?因为如果它是WCF服务,则可以使用SvcUtil.exe访问该服务。如果它是一个web服务,那么您可以从任何web浏览器访问该服务,前提是您知道下面中的WSDL文件名

http://servername/apppath/webservicename.asmx

(或)

 http://servername/vdir/webservicename.asmx/Methodname?parameter=value

有关更多信息,请参阅本文档。

我知道这是一篇旧帖子,但我只是偶然发现了完全相同的问题。我通过更改来修复它

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

importer.ProtocolName = "Soap"; // Woohoo

ProtocolName允许的值为:

  • "肥皂"
  • "Soap12"
  • "HttpPost"
  • "HttpGet"
  • "HttpSoap"

根据文件。

希望这能帮助到遇到类似问题的人!

相关内容

  • 没有找到相关文章

最新更新