I've been trying to do some research on REST and SOAP web service supporting frameworks for CentOS/Redhat that would also be able to reasonably support a management Web application along side the services themselves.
We haven't determined if REST or SOAP will be the way to go for service communication. The communication requirements are pretty straight forward, so a heavier SOAP interface may not be required. (but wouldn't be complex either)
I've done work with Ruby on Rails in the past (on the side currently) but the technology isn't as familiar to the rest of my group as J2EE would be.
ServiceStack is also interesting (I'm looking into it now) but I've worked on .Net/Mono projects in the past and have run into all kinds of Mono implementation and runtime issues. (I'm sure it's come a long way in the last 2 years, but I'd like to see if there's a better alternative)
Basically I need a stack/framework which supports REST or SOAP, (both would be amazing) and can support a MVC style Web app. The idea is the Web service and Web app would have access to the same database. The Web app would be an end-user/admin management interface, and the Web service would be for remote system/automated access to controlled data.
Finally, about 80% of the application database schema will be predefined and won't follow any MVC style modelling. So a framework which is intended to tightly model the schema data for MVC only use, like Ruby on Rails, wouldn't be preferable as we'd end up having to re-create the Models or write an entirely separate database query handling library which both the Web service and Web app would have to use. It would be great if existing data could be modelled more flexibly. (in case the existing schema changes at a later date)
Sorry if I'm being too generic. (or specific) I'm just interested in opinions. Thanks!