HTTPService passes strings not objects so that is most likely the 
issue.  Either convert the DataModel to a xml string or do something 
like this to pass in the variables as form variables.  

If you want to pass objects you need to use RemoteObject calls.

public function submitURL() {
                        
                        var variables:Object = new Object();
                        // Build request
                        variables.parent1firstname = 
parent1firstname.text;
            variables.parent1lastname = parent1lastname.text;
      
                 // Submit       
            submitData.request = variables;
            submitData.send();
        }








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

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to