Could not perform web service invocation "getInfo" because
java.lang.IllegalArgumentException: argument type mismatch
Anyone have any idea how to pass an array of strings into a service?
Code:
<cfset accts = ArrayNew(1)>
<cfset accts[1] = "1111111111111111">
<cfset accts[2] = "2222222222222222">
<cfset accts[3] = "3333333333333333">
<cfinvoke
webservice="http://localhost/WebService/Service1.asmx?WSDL"
method="getInfo"
returnvariable="aArrayOfAccts">
<cfinvokeargument name="accts" value="#accts#"/>
</cfinvoke>