-
Archives
-
Meta
- Register
- Log in
Category Archives: Software Development
Flex for Rails Scaffolding (cont) – the controller template
I’ve made a little improvement to my development process, in such a way that the scaffolding i do for creating the web services I later use for my flex client are generated in their final form without the need to adjust them. Continue reading
Posted in Software Development Leave a comment
Passing a Byte Array through JSON
Its a well known issue when communicating complex structures between client and server, using the JSON encoding. I’ve encountered it when attempting to transfer an encrypted Byte Array back and forth between a client and server, that communicate via JSON. … Continue reading
Posted in Software Development Leave a comment
Flex For Rails Scaffold
I’ve written a little component for connecting flex with rails scaffold as close as possible. Step 1: Create a scaffold for Card Within your rails application run the script: ./script/generate scaffold card id:integer timeStamp:timestamp data:text (data types with Ruby and … Continue reading
Posted in Software Development Leave a comment