RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-09 Thread Peter Farland
ot;Debug" in the /WEB-INF/flex/gateway-config.xml file and restarting the web app. The default logger implementation uses System.out to trace information to the console. Depending on your app server and how you start the process, this may appear on the command line or in a log

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-04 Thread Valy Sivec
eway-config.xml file and restarting the web app. The default logger implementation uses System.out to trace information to the console. Depending on your app server and how you start the process, this may appear on the command line or in a log file. From: flexcoders@yahoogroups.com [ma

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-03 Thread Peter Farland
PROTECTED] On Behalf Of Valy SivecSent: Tuesday, January 03, 2006 4:01 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation Peter,Here is the serverAPI,public class Parent implements Serializable { private String

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-03 Thread Valy Sivec
PROTECTED] On Behalf Of Valy SivecSent: Tuesday, January 03, 2006 4:01 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementationPeter,Here is the serverAPI,public class Parent implements Serializable { private String

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-03 Thread Peter Farland
u start the process, this may appear on the command line or in a log file. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy SivecSent: Wednesday, January 04, 2006 3:30 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex 1.5: AS2 serialization issue . Par

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-02 Thread Peter Farland
Can we see the server API for these types too? When you say a Child's parent property is empty, are you saying it is null on the server? What are you using to determine that? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy SivecSent: Tuesday, January

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-02 Thread Valy Sivec
Peter,Here is the serverAPI,public class Parent implements Serializable { private String property; private Set childs; have here get/set methods}public class Child implements Serializable{ private String property; private Parent parent; with get/set methods}I have a one-to-many relation