Request to generate stong data types for web services.
Currently, a type of 'xsd:string' is generated for all
the common data types (double, datetime, boolean,
string etc). This handling of this generic 'string'
type has major issues on the client side such date
formatting, rounding, precision etc. It adds to client-
side complexity and data type consistency.
Update the web service (wsdl) generation process to
generate the following common WSDL data types:
-- High Priority mappings
SOAP-ENC:double (maps to ColdFusion numeric)
SOAP-ENC:boolean (maps to ColdFusion boolean)
SOAP-ENC:string (maps to ColdFusion string)
xsd:dateTime (maps to ColdFusion date
xsd:base64Binary (maps to ColdFusion binary)
-- Low Priority mappings
Others:
xsd:float (maps to ColdFusion numeric)
SOAP-ENC:Array (maps to ColdFusion array)
Note: The above list also shows the correspong
ColdFusion data type mappings.