I have a Java Soap service with method
public void helloStudentsName(String[] names)
And user robot framework (SudsLibrary) to call this, because i didn't fine Array in Robot so i use List in code
${names} Create List name1 name2 name3
Call Soap Method helloStudentsName ${names}
I got error
TypeNotFound: Type not found: 'arg0'
And replace $ by @ in list declare
@{names} Create List name1 name2 name3
Call Soap Method helloStudentsName @{names}
No error but in Java method receive an empty array.
Can you show me how to call this method?