[flexcoders] Re: Best practices regarding XML to VO conversion

2010-02-11 Thread jc_bad28
Here is how I convert XML from a SOAP web service into a VO. The VO Class: package vo { [Bindable] public class Product { public var ID:String; public var Category:String; public var Price:String; public var

[flexcoders] Re: Best practices regarding XML to VO conversion

2010-02-09 Thread Ariel J
I'm interested in seeing your code. --- In flexcoders@yahoogroups.com, W.R. de Boer w...@... wrote: Hi Claudiu, I am using my custom unmarshaller class in combination with XML/E4X but I keep having a memory. Maybe I am just doing something? Maybe it's the use of a Vector-type in main VO