In ActionScript 3, how to decode from xml to ActionScript class ?
I could encode from ActionScript class to xml by using XmlEncoder.
The xml schema I used at that time is this.
[schema1.xsd]
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="user">
<xs:sequence>
<xs:element name="id" type="xs:string" minOccurs="0"/>
<xs:element name="password" type="xs:string" minOccurs="0"/>
<xs:element name="userDate" type="xs:dateTime" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
This schema is created by Ant(schemagen) task using POJO(User.java) with no annotations.
But I could not decode from xml to ActionScript class by using this schema and XmlDecoder. (In correct, I can't be done casting from Object type to User type.)
I want not to put any annotations like @XmlRootElement or @XmlType in Java class.
However, I need a schema file for client side of ActionScript to marshal and unmarshall.
Please tell me any solutions or examples...