Happy New Year.
I have a bunch of SOAP Web Services. They all have an HTTP POST and GET interfaces along with the SOAP interface. I believe POST and GET are offered by default when building SOAP Web Services in .NET/Visual Studio.
These methods either: (1) get information, e.g., provide your username, password and a transaction ID -> get an XML with your transaction's status; (2) create a transaction by providing your username, password and some data -> get an XML with your transaction ID.
My question is: would it be accurate to say I have a RESTful web service for those Ruby guys out there?