public
Description: Code samples for the Flex on Rais book.
Homepage: http://flexonrais.com
Clone URL: git://github.com/danielwanja/flexonrails.git
flexonrails / 02_Passing_Data_with_XML
name age message
..
file README Wed Sep 17 08:01:46 -0700 2008 Added code for chapter 2, Passing Data with XML [danielwanja]
directory flex/ Sat May 02 20:03:51 -0700 2009 Compatibility with Rails 2.3.2 [Daniel Wanja]
directory rails/ Sat May 02 20:03:51 -0700 2009 Compatibility with Rails 2.3.2 [Daniel Wanja]
02_Passing_Data_with_XML/README
This is the code used for chapter 02 - Passing Data with XML.

Before starting the Rails application don't forget to create and migrate the database by doing the followoing:

  rake db:create
  rake db:migrate


The Flex applications are the following

ForPassingDataWithXML.mxml
  This is a bar minium Flex application that simply declares a native XML instance variable.
  
ForPassingDataWithXML2.mxml
  Test harness that asserts several aspect of ActionScript XML and e4x.
  Note run the application in debug mode to see the assertion results.
  
HttpServiceToRead.mxml 
  Performs a simple restful call using HTTPService.
  
HttpServiceToUpdate.mxml
  Performs an update restful call using HTTPService.
  
MappingXMLTypes.mxml
  Test harness for XML type mapping.