I am using Ruby on Rails 3 and I am considering to use ActiveResource in order to trasmit information from a RoR service application to a RoR client application.
In general, in which case is it advisable to use ActiveResource? and in which case is it not?
I have many doubts about the use of ActiveResources. The following is just one.
- I have resources consisting of private information and public information. I should not send over HTTP private info and so I could not send those with the public info unless I don't hack RoR behaviours. If I use HTTPS, so that I don't have to hack the RoR behaviours, is not too heavy the work for the server?