I want a Flex UI to send a string of text to Rails which will process and return a string of text. Wash, rinse, repeat. That’s all I want. All of the examples I am finding are much more complex and not very informative given my noobiness.
Thanks in advance,
NJ
In Flex, use an HTTPService object to send a POST request to the Rails app with the text to be processed.
In your mxml:
In your as:
Then just create a controller in your Rails app to process and return the text. There should be many good tutorials out there on how to handle a POST in Rails.