Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Raaga #1
Passing Array type to WSDL
Hi, I am writing a CFC which takes the array as input and return type as
string. Wondering how i can display the field properties of the array. Fields
in MyArray are FName, LName which are strings <cfcomponent displayname='MyCFC'
hint='CFC WSDL'> <cffunction access='remote' name='MyFunction'
returntype='string'> <cfargument name='MyArray' required='true' type='array'>
<cfreturn My result> </cffunction>
</cfcomponent> I am using CF MX 6 Looking for your help. Thanks in advance
-Raaga
Raaga Guest
-
using Web Service with Complex-Type in WSDL
I have a web service developed in BEA WebLogic that I am trying to call. The WSDL has two complex types in it and is of type document/literal. When... -
WSDL Data type restrictions
Hi, my queston relates to classes generated using XSD.exe from schemas. Basically I have a number of schemas which contain data type definitions,... -
Mapping of type string in WSDL
Hi I've got the following webmethod: public string Hello( string name) { return "Hello " + name; } -
How to exclude a type definition from WSDL
Hi, I have a web service which returns a strongly typed dataset to its client. This typed dataset was defined in a class library which was... -
Relation between XmlNode and WSDL minoccurs or type
I have a WSDL-file that looks like the following (Part of it) - <s:complexType name="Persoonslijst"> - <s:sequence> <s:element minOccurs="0"... -
Kevin Schmidt #2
Re: Passing Array type to WSDL
Well you could always use ArrayToList and convert the array to a string that way.
Kevin Schmidt Guest
-
Raaga #3
Re: Passing Array type to WSDL
Hi Kevin, Thanks for your reply. The purpose of writing this CFC is to
collect the FName, LName and i have those in a Array. If some one sees the WSDL
by accessing [url]http://MyURL/MyCFC?WSDL[/url] how do they know that they have to pass
FName and LName in the query which are of string datatype. Thanks -Raaga
Raaga Guest
-
Kevin Schmidt #4
Re: Passing Array type to WSDL
Why are you requiring them to pass these items in in an array?
Kevin Schmidt Guest
-
Raaga #5
Re: Passing Array type to WSDL
Hi Kevin, I am giving this WSDL to other people send data to my server
through this url. By seeing the WSDL the can understand the fileds required
instead of me sending the information. Thanks -Raaga
Raaga Guest
-
Kevin Schmidt #6
Re: Passing Array type to WSDL
So again I ask, why are you requiring them to pass you an array? Why not XML or another format?
Kevin Schmidt Guest
-
Raaga #7
Re: Passing Array type to WSDL
Hi Kevin,
My client needs the data to be sent as in Array format.
Thanks
-Raaga
Raaga Guest



Reply With Quote

