I'm thinking to understand the base use of HTTP verbs GET, POST etc... I read these articles, but it is not so clear for me yet:
Use of HTTP RESTful methods GET/POST/etc. Are they superfluous?
I just don't see the propose to add an qualifier (as I know, GET, POST etc... is an qualifier) for a method calling. Why don't just call a method through URL (like server.domain/methods/addnewproduct), and the server side will decide what to do? I understand when to use GET, POST, UPDATE etc... (CRUD procedure bla-bla-bla) I just don't see why to implement these verbs for qualifying remote method calling. I read that many time, it is because these are safe methods, but why are these methods safe?