Equivalent datatypes in flex for various wsdl data types?
WSDL defines a number of datatypes supported by web service . Is there a documentation stating the various equivalents of those datatypes on flex side. In general for any la开发者_Python百科nguage that we use to consume web service, how do we get to know the equivalent datatypes of the wsdl types.
One of the web service that I am consuming is returning base64Binary (an image binary data) , What is the equivalent datatype of this on flex ?
Please see link
Serializing between ActionScript and web services
You can also define your custom type this link is for JAVA
Explicitly mapping ActionScript and Java objects
EDIT: This also very supportive link
Using WebService components
hopes that helps
base64Binary is a ByteArray (any binary based datatype is a ByteArray in Flash) and you can set the endian within the object.
精彩评论