通过 Suitetalk API 连接到 NetSuite 生产帐户时出现以下错误:

c# - 连接到 NetSuite Web 服务时出现 SOAP 错误 :  "Namespace prefix '  soapenv' not defined"-LMLPHP

我在连接到此客户端的 Sandbox 帐户时没有问题。我正在通过 C# WCF 项目进行连接。我不认为问题出在 c# 项目上,因为此代码正在与许多其他客户一起用于生产中。

在我看来,返回的 SOAP 消息格式不正确 - SOAP 消息中的“soapenv”元素之前似乎有一个换行符。我在针对 API 创建“获取”请求时收到此错误(使用护照登录)。不过,此错误发生在任何 API 调用中,我也尝试过简单地通过 API 登录。

我已经仔细检查了该客户的登录详细信息和帐户信息,一切似乎都井井有条。此外,如果此信息不正确,我应该收到身份验证错误 - 而不是格式错误的 SOAP 消息。

任何帮助将不胜感激,谢谢!

最佳答案

结果证明我需要使用 webservices.na3.netsuite WSDL。我的印象是常规的“webservices.netsuite”WSDL 会将任何请求定向到正确的服务器。
因此,当通过 SuiteTalk 连接到 NetSuite 帐户时,请务必使用正确的 WSDL 并指定正确的端点以及您的登录凭据。您可以在登录 NetSuite 帐户时通过查看 URL 来检查您的帐户托管在哪个服务器上。

class DataCenterAwareNetSuiteService : NetSuiteService
{

    private System.Uri OriginalUri;

    public DataCenterAwareNetSuiteService(string account, bool doNotSetUrl)
        : base()
    {
        OriginalUri = new System.Uri(this.Url);
        if (account == null || account.Length == 0)
            account = "empty";
        if (!doNotSetUrl)
        {
            //var temp = getDataCenterUrls(account);
            DataCenterUrls urls = getDataCenterUrls(account).dataCenterUrls;
            Uri dataCenterUri = new Uri(urls.webservicesDomain + OriginalUri.PathAndQuery);
            this.Url = dataCenterUri.ToString();
        }
    }

    public void SetAccount(string account)
    {
        if (account == null || account.Length == 0)
            account = "empty";

        this.Url = OriginalUri.AbsoluteUri;
        DataCenterUrls urls = getDataCenterUrls(account).dataCenterUrls;
        Uri dataCenterUri = new Uri(urls.webservicesDomain + OriginalUri.PathAndQuery);
        this.Url = dataCenterUri.ToString();
    }
}
上面是这样调用的:
new DataCenterAwareNetSuiteService("*account number*", false);

关于c# - 连接到 NetSuite Web 服务时出现 SOAP 错误 : "Namespace prefix ' soapenv' not defined",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51134584/

10-13 07:36