In SoapUI I have a groovy script to build an array with parameters I'd like to use in a SOAP response.
I have used the following command in groovy to set the Array in the context:
context.MyArray = MyArray
How do I access the array parameters within the SOAP tags?
I have tried <Tag>${MyArray[0]}</Tag> but it passes back an empty value.
Many thanks Peter