I'm using a web services task in SSIS and it's working okay. One of the parameters is a string[] array. I can type type in the values to the editor and it works fine, but I want to load it from a variable. But I can't figure out how to create/set a string array variable. I created a string variable and set it to things like {'Test'} or ['Test'], but they didn't work.
Ultimately what I want to do is have it be an expression where some of the strings are other variables. ArrayList = @SystemVariable::PackageName, @SystemVariable::TaskName....