What gets classified as a RESTful Web Service
问题 So I currently have an application that calls a web service to retrieve data, where I do a basic HTTP GET on a url like so www.example.com/service.asmx?param1=1¶m2=2 This returns some xml which I parse. My question is, does this classify it as a RESTful Web Service? I am thinking no, but I'd like to know what makes it a REST web-service? I know there are REST and SOAP web services, but what would the above case be classified as, simple HTTP GET Web service? or something? Thanks, I am