Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
droopcat #1
creating web service with complex data types
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??
droopcat Guest
-
complex data types from PHP to Flash
Does anyone know of any really easy and effective ways to move complex data types from PHP into FLASH and vice-versa? A while back I made an... -
WSDL Complex Data Types Call
Hello. I've tried everything I can to make a call to a WSDL service. I know that the service uses complex data types/structures. I've followed... -
How do you pass an complex data types to webservice?
Hello, I have gone through the simple CFC web services examples where you invoke a call to a web service with a methods and parameters.... but... -
Referencing web service complex data type within a second web service (like a delegate)
Hi, I am trying to figure out if ASP.NET XML Web Services and the WSDL standard can handle this type of scenario: I have two web services, and... -
Web Service with complex paramters and return types
I'm starting to think about my first web service. In order to do its job, this web service needs to have a lot of inputs, and it needs to return...



Reply With Quote

