I have been programing in Ruby for 7 months and used Rails as a framework for the Good Large Full length Project (Enterprise Resource Planning ERP in Manufacturing Domain). It required complex View Logic..as well as complex Models to write core engines.. as well complex routing logic.. for MIS Reports.. So I took Rails as the only option for it.. And it really helped to speed up the implementation.. This application is really complex as far as logic is involved, but maximum user that use this application is company specific and not more than 100 users per application.
Now, I am going to work on an Application that is dealing with Mobile/ VOIP Domain. This is really gray area for me. What I know about the Application is
- This is basically like a Auto recharge / Prepaid Mobile Service
- Will Logic is Medium Complex Compared to ERP.
- The Views sections the Response will be plain text for which will be send as SMS/ USSD pull to user and Voice xml (VXML) that will be send as IVR Response to user
- The Routing Logic is very Simple as the only 2 to 3 url will important for each type of reply.
Constraints (that can't be avoided):-
We have the Core System built in Perl its a Legacy System which is serving many other VOIP/ Mobile related services and Accounting System to keep track of Profit and loss and has grown very complex. So we decide to make this application separately and only SMS /USSD and IVR related. But every user of this Application has to be registered user of the Core System for Accounting Purpose, this we can easily achieve by just an api call.
Now, for sending a reply/response for IVR amd USSD.. we need to deploy the Application at Vendor which provide these facilities. But we don't want to always need to Login into their servers for daily reports and accounting stuff as for each of our client we will have different flow for the USSD/SMS/IVR System.
So, we decided this New Application will be indeed divided into two Sub Applications.
- One Application will handle the USER Interface with USSD/SMS/IVR Domain and will deployed on Vendor's Severs. Which we call as Clientware.
- The Second Application will handle all core Business logic and Reporting System and will be deployed on our servers where we will have full access. Which we call as Middlware.
And the Basic Flow :=
- The User dials the Shortcode.
- Call lands on our Vendor Servers where Clientware app will handle the request and register it as a user in it's local database.
- Clientware will also make an Api call to Middleware. To register this user over there as well for Core Business Logic Timely Auto recharge, etc.
- The Middle will then also make API call to the Core System to register this user over there as well for Accounting Purpose.
Now there will be many such Clientware Application interacting with Single Middleware Application. These appliction we have decided to build in Ruby. I would be following Restful Architecture for this as lots Api calls are involved in this.
So, here is the question which framework Rails, Padrino, Sinatra will be suitable for this Project ? I would like to good comparison with as many Pros and cons possible.
Thanks In Advance