I am trying to create a web service that contains a function that should take
an array of complex types. The function within the cfc that gets published as a
web service looks something like this: <cffunction name='availability'
returnType='.....' access='remote'> <cfargument name='prop' type='property'
required='yes'> </cffunction> And type property is a cfc looking like this (i
took some properties out, there need to be more in there) <cfcomponent>
<cfproperty name='code' type='string'> <cfproperty name='description'
type='string'> </cfcomponent> But how can i make the function take an array of
property types??? if i change the cfargument to type='array' then the WSDL does
not know that the members of the array need to be of type 'property'. Also if
i'd want to add an array of complex types to the property.cfc i wouldn't know
how to do this, because <cfproperty> also has the same problem as <cfargument>
in this case. Am i missing something? I really don't know how to get this to
work and i also don't seem to find any documentation on this specific issue.
Anybody??