Reputation: 773
I have two rails applications, hosted on heroku, that need to communicate.
For now, everything is done in a RESTful way, using ActiveResource when it's relevant.
Now, the problem is to secure these communications, to prevent that someone sniff the network and then make some call and has access to informations or make some actions.
How do you do that?
Tx
Upvotes: 2
Views: 489
Reputation: 14574
Realize this is an old question, but have you considered using some sort of messaging or queue? Redis is one thing that comes to mind.
Upvotes: 0