Hi in Flex one can easily define the remote class alias like the following:
package samples.portfolio
{
[RemoteClass(alias="flex.samples.marketdata.Stock")]
[Bindable]
public class Stock
{
public var symbol:String;
public var name:String;
public var low:Number;
}
}
But my question is how do you do it in AIR since the client app does not know about the server file structure.
Regards,