RE: [flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread Jeff Vroom
Each Java class needs to be serialized from ActionScript. Right now, this means exposing all properties using public get/set methods or with a public field. Without a setter, it is hard to know exactly what field to set when we deserialize a class. Jeff

RE: [flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread Jeff Vroom
Oh interesting I haven't run into this case before, but I think we do still need the ability to set the property on the AS side at least. When you create an item on the client, it might have a null or empty id. When you commit that change, the server typically assigns an id. The client gets