Difference between web services and web application

前端 未结 8 2011
天涯浪人
天涯浪人 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:12

    Web service is for application consumption , invoked through web application To communicate with webservice data should be sent as SOAP message or as REST i.e XML over HTTP

    Most of the times web service is not part of application because to facilitate the use by other web applications and it is not for direct consumption to end users

    Web application is for human consumption invoked directly by GUI which may or may not use web service for giving response

提交回复
热议问题