Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/backbone.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C#在不添加web引用的情况下调用nav web服务_C#_Web Services_Web Reference - Fatal编程技术网

C#在不添加web引用的情况下调用nav web服务

C#在不添加web引用的情况下调用nav web服务,c#,web-services,web-reference,C#,Web Services,Web Reference,我正在从事一个项目,该项目要求我连接到Microsoft Dynamics NAV web服务,并获取一些数据。但是,我们无法从开发环境访问此web服务,因此我无法以通常的方式将web引用添加到我的项目中 有没有一种方法可以通过提供URL、用户、密码和域在运行时“动态”连接到web引用?然后创建动态对象,并调用web服务的方法?(因此我将创建一个控制台应用程序,它只在生产环境中运行,因为可以访问web服务) 从我最初的研究中,我发现了几种方法,其中有一个函数,返回对象类型的对象。我通常对此有凭证

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

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

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

顺便说一句,我对这些web服务很陌生

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

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
(或)

有关更多信息,请参见此

它是web服务还是WCF服务?因为如果它是WCF服务,那么您可以使用
SvcUtil.exe
访问该服务。如果它是一个web服务,那么您可以从任何web浏览器访问该服务,只要您知道如下所示的WSDL文件名

http://servername/apppath/webservicename.asmx
(或)


有关更多信息,请参阅此

我知道这是一篇旧文章,但我只是偶然发现了完全相同的问题。我通过换衣服把它修好了

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

ProtocolName允许的值为:

  • “肥皂”
  • “Soap12”
  • “HttpPost”
  • “HttpGet”
  • “HttpSoap”
按照


希望对遇到类似问题的人有所帮助

我知道这是一篇老文章,但我只是偶然发现了完全相同的问题。我通过换衣服把它修好了

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

ProtocolName允许的值为:

  • “肥皂”
  • “Soap12”
  • “HttpPost”
  • “HttpGet”
  • “HttpSoap”
按照


希望对遇到类似问题的人有所帮助

这是一个web服务,因为我可以从Internet Explorer或web service Studio访问WSDL文件。看起来你的方向是对的。谢谢你的回复,但这无助于你。我添加到问题中的代码应该可以做到这一点,但“warning”变量的值无效。这是一个web服务,因为我可以从Internet Explorer或web service Studio访问WSDL文件。请查看此帖子。看起来你的方向是对的。谢谢你的回复,但这无助于你。我添加到问题中的代码应该可以做到这一点,但“warning”变量的值无效。