Hi everyone, Here is a simple design question on which I'd like to have your opinion :
made short : "How to keep server object relationships in flex when you do several calls" Take an example : 2 companies, say Apple and Microsoft, have several clients, among them, say Macromedia. (relation Company->Client) Let's make a flex application which requests (server call) and displays all the clients of a selected company. If I make a first remote call to get Apple's clients, Flex will receive a list of objects including an Client object for Macromedia. Later, I select Microsoft, and get Bill Gate's clients. Flex will receive another list of objets, including another version of the Client object for Macromedia. Although it is the same Macromedia client object on the server, I have now 2 distinct Macromedia client object in my Flex Application. And if, for example, I change the name of one Macromedia object to (purely fiction) Adobe, the change won't apply on the other objet ... Damien

