在某些情况下,PowerBIClient会生成System.ArrayTypeMismatchException

时间:2017-02-22 11:03:04

标签: c# powerbi powerbi-embedded

我有一些非常奇怪的问题。使用所有最新的PowerBI nuget-packages及其最新的依赖项迭代,我得到以下异常:

Exception thrown: 'System.ArrayTypeMismatchException' in mscorlib.dll

Additional information: Attempted to access an element as a type incompatible with the array.

堆栈跟踪向我显示:

   at System.Collections.Generic.List`1.Add(T item)
   at Microsoft.PowerBI.Api.V1.PowerBIClient.Initialize()
   at Microsoft.PowerBI.Api.V1.PowerBIClient..ctor(ServiceClientCredentials credentials, DelegatingHandler[] handlers)
   at Apps.Kinetic.Reports.Endpoint.Service.Reports.g1u0.GenerateAccessToken(String _Reference) in D:\*masked*.cs:line 575

在尝试查看我在Initialize上发现的PowerBIClient源代码时,它确实试图将类型为Iso8601TimeSpanConverter的类添加到JsonConvert列表中,只需看看这里:

/// </summary>
private void Initialize()
{
    this.Datasets = new Datasets(this);
    this.Gateways = new Gateways(this);
    this.Imports = new Imports(this);
    this.Workspaces = new Workspaces(this);
    this.Reports = new Reports(this);
    this.BaseUri = new Uri("https://api.powerbi.com");
    SerializationSettings = new JsonSerializerSettings
    {
        Formatting = Formatting.Indented,
        DateFormatHandling = DateFormatHandling.IsoDateFormat,
        DateTimeZoneHandling = DateTimeZoneHandling.Utc,
        NullValueHandling = NullValueHandling.Ignore,
        ReferenceLoopHandling = ReferenceLoopHandling.Serialize,
        ContractResolver = new ReadOnlyJsonContractResolver(),
        Converters = new List<JsonConverter>
            {
                new Iso8601TimeSpanConverter()
            }
    };
    DeserializationSettings = new JsonSerializerSettings
    {
        DateFormatHandling = DateFormatHandling.IsoDateFormat,
        DateTimeZoneHandling = DateTimeZoneHandling.Utc,
        NullValueHandling = NullValueHandling.Ignore,
        ReferenceLoopHandling = ReferenceLoopHandling.Serialize,
        ContractResolver = new ReadOnlyJsonContractResolver(),
        Converters = new List<JsonConverter>
            {
                new Iso8601TimeSpanConverter()
            }
    };
    CustomInitialize();
}

我无法弄清楚为什么在我的应用程序中发生这种情况,而在演示样本中有几个版本,它完全正常工作。但我确实知道,当我最初使用4.6.1中的常规.NET控制台应用程序时,我也能使用它。但现在我正在使用.NET 4.6.1框架的.NET Core控制台应用程序。除此之外的一切都很好。

以下是问题的屏幕截图:

Screenshot of the issue

我发现此开发人员有类似问题,但与PowerBI无关。但是没有答案。

Adding Iso8601TimeSpanConverter to JsonConverter list throws ArrayTypeMismatch exception

1 个答案:

答案 0 :(得分:0)

您现在提供的问题的链接包含一个帮助我解决此问题的提示。在我的情况下,它是由GAC中安装的多个版本的Newtonsoft.Json.dll引起的。在我配置我的应用程序以解析对最新版本的库引用之后,异常就消失了。