This is more of a technology stack question.
the C# logic is pre-existing / legacy and is internally a multiple-machine/distributed app. My need is to implement an overview web interface. So I've been looking at doing a prototype in Ruby On Rails.
Now my knowledge is a day or 2 old here... so correct me if i am wrong. there used to be something called ActionWebServices (AWS) - which is now out of the core distrib. ActiveResource has taken its place in Rails 2.0. You can still get AWS by doing a gem install... (however couldn't find an AWS tutorial)
So looking at ActiveResource (Ares): Now Ares is opinionated.. it expects the target web service to be Restful, follow a certain pattern of URLs and accept XML as input
Now my question here is what do I use to implement the wrapper web service?
- If I use Rails to do the web service as well.. I think I'm going to have some Ruby-C# interop issues (is it even possible? Can I do this via the MS-impl IronRuby?)
- If I do the web service using an MS specific thing e.g. ASP.Net, Ares wont talk to it. Can you satisfy the Ares constraints via ASP.Net somehow?
Pardon my general ignorance of the web world.. and thanks for reading.