I am planning to write some new UI code and many people suggested to use RoR. But from what I have read about RoR so far, it seems to be almost mandatory to have a database to store the backend data. In my case, I do not have access to a database and all my data objects are available through web services (some REST and SOAP services).
I think I have to use the controller to directly talk to the services in this case, but is it still a good idea to use RoR without the model layer (ActiveRecord).
Are there any other frameworks more suited for this kind of approach (I can use anything in Java or Ruby, we do not have any PHP or Python code).