it seems that if i create a new Instance of the UserVO everything is working .
 
for example referring the example below
 
function getUser(event){
    //var userVO:UserVO = event.result;   // does not work
 
    var userVO:UserVO  = new UserVO(); // works fine.
 
 
    // we save with the save object we got.
    saveUser(userVO);
}
 
 
why the type is changing when the data comes from the event.result  ? is there a copy constructor utility available out there ?
 
 
shlomi


From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shlomi Cohen
Sent: Wednesday, February 08, 2006 20:19
To: 'flexcoders@yahoogroups.com'
Subject: RE: [flexcoders] Difference between WebService and Remote Object

How , i create the VO using Ant task (code generation)
except for 1  public static final member - could that be the diff ?
 
Shlomi
 


From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint Modien
Sent: Wednesday, February 08, 2006 20:07
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Difference between WebService and Remote Object

More than likely the definitions for your java UserVO  and your ActionScript UserVO are different.



On 2/8/06, Shlomi Cohen <[EMAIL PROTECTED]> wrote:
Hi
 
 
while testing the performance of our application , i changed the way we work with the server from WS to RemoteObjects
i found that there is a difference in the way data is being received / transmitted although we use the registerClass (as the POJO2AS does for you) .
for example a method that was saving user info to DB did not work with RO - saying it could not convert ASObject to typed object.
 
what is wrong here ?
 
here is a short snapshot
 
 
<mx:RemoteObject id="service">
    <mx:method result="getUser(event)>
    <mx:method result="saveUser>
</mx:RemoteObject>
 
function sendRequest(){
 
    service.getUser(111);
}
 
function getUser(event){
    var userVO:UserVO = event.result;
 
    // we save with the save object we got.
    saveUser(userVO);
}
 
function saveUser(userVO){
    service.saveUser(userVO);  ///fails to convert ASobject to typed object
}
 
 
Shlomi

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS





______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




Reply via email to