Difference between web services and web application

前端 未结 8 2012
天涯浪人
天涯浪人 2021-01-30 02:16

Lets have an example scenario:

Client opens a web site and finds the sum of two numbers which he enters from the textboxes.Then clicks on the ADD button.Two parameters a

8条回答
  •  伪装坚强ぢ
    2021-01-30 03:13

    A webservice is equivalent to a method in java that has a web wrapper around it. It lives on the server and it can be sent data / queried etc. and may or may not return a result. It does not have any front end it can only be accessed via http get, put, delete etc.

    A web Application is a fully functional piece of software that lives on a sever that is designed to help people achieve a task. This would have a front end that would allow users to interact with it / enter data etc.

    A web application could use multiple webservices to achieve its goal / end result

提交回复
热议问题