Issue using TagProvider.writeAsync for StringArray and DateArray tags

I have a Java ArrayList of string values and am trying to write them to a memory tag of String Array type. I also have an ArrayList of Java.Util.Date objects and trying to write those to a memory tag of type Date Time Array.

I am getting the following error for the string array: [Error_TypeConversion(“Cannot coerce value ‘[robot 5, robot 4, robot 3, robot 2, robot 1]’ into type: class [Ljava.lang.String;”)]

Have you tried converting them to arrays before you call writeAsync?

Perfect, Thanks.